4
votes
Do I have to learn Objective-C for professional Mac Development?
Our first app was built in Python, using the PyObjC bridge. From experience I can tell you that to build an application with a bridge you need to learn:
The idiosyncrasies of the brid …
2
votes
NSAlert without bouncing dock icon
Create your own subclass of NSApplication, and implement something like this:
- (int)requestUserAttention:(NSRequestUserAttentionType)requestType
{
if (dontDoThatBouncyT …
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 …
2
votes
SCM for Xcode?
You can't really go wrong with using Subversion.
If, like me, you don't like Xcode's SVN integration too much you can always choose to use the command-line tools, or one of the several GUI …
1
vote
Mouseover in NSTableView
You're on the right track with -mouseEntered: and -mouseExited:.
Look into NSView's -addTrackingRect:owner:userData:assumeInside: and -removeTrackingRect: methods. You can either set up yo …
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 …
1
vote
Install PyObjC on Python 2.6 on OS X 10.5?
You should probably try to build PyObjC from trunk, which will work fine on the official Python 2.6 distribution, but not on Python 2.5. There are quite a lot of fixes in the trunk right now that …
