6
votes
Best Cocoa/Mac OS X programming blogs?
KATI
She hasn't posted in a while, but what's there is really good
…
1
vote
Printing without Page Setup - reacting to paper size and orientation changes?
One approach that's slightly hacky but works really well is to run two NSPrintOperations.
We use this in our app's printing code, to detect if the user selected a regular printer or a recei …
2
votes
NSAlert without bouncing dock icon
Create your own subclass of NSApplication, and implement something like this:
- (int)requestUserAttention:(NSRequestUserAttentionType)requestType
{
if (dontDoThatBouncyT …
2
votes
How do you develop an application to draw, edit and save UML models in Cocoa?
One way to do this is to:
Create a document-based app
Design model classes for the different objects the end-user will be able to draw in your canvas, all sharing one abstrac …
4
votes
Finding the Current Active Window in Mac OS X using Python
This should work:
#!/usr/bin/python
from AppKit import NSWorkspace
activeAppName = NSWorkspace.sharedWorkspace().activeApplication()['NSApplicationName']
print activeAppName
…
9
votes
Looking for info on custom drawing of interface components (Cocoa)
It depends entirely on what you want to do.
The "Show Raw Properties" button in Versions for instance is an NSButton subclass, because basically what we needed is standard button behavior w …
0
votes
Finding when the ActiveApplication changes in OSX through Python…
I'm not aware of an 'official'/good way to do this, but one hackish way to go about this is to listen for any distributed notifications and see which ones are always fired when the frontmost app ch …
1
vote
Forcing Reading of a Text Field Before Dismissing Modal Dialog in Cocoa
A slightly abrupt way to end editing can be achieved with the following call:
[startTimerDialog endEditingFor:nil];
This always works, but it's a bit more intense …
4
votes
[NSView setFrame:] not working?
15px is exactly the size of an NSScroller at NSRegularControlSize.
My guess is that you have your NSScrollView configured to automatically hide scrollers.
Try turning off the horizo …
