2
votes
2answers
205 views
What’s the deal with NSZoneFree in -(void)dealloc?
In Apple's NSObject documentation, NSZoneFree is called in the - (void)dealloc example code:
- (void)dealloc {
[companion release];
NSZoneFree(private, [self zone])
[sup …
7
votes
Best Cocoa/Mac OS X programming blogs?
KATI
She hasn't posted in a while, but what's there is really good
…
0
votes
Create a cross platform Windows, Mac OS X application
The guys at Magnetism Studios have a nice write up on using Cocotron to build a Windows exe …
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 …
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
…
10
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
Techniques for implementing -hash on mutable Cocoa objects
Since you are already overriding -isEqual: to do a value-based comparison, are you sure you really need to bother with -hash?
I can't guess what exactly you need this for of course, but if …
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 …
2
votes
Good database library/ORM for cocoa development
We faced a similar question when we first started work on Checkout, our solution was to code the entire app in Python, using PyObjC. Checkout 1 …
0
votes
Multiple recessed NSButtonCells in a custom control
First off, a band-aid might be the first thing that could help. ;)
Have you tried using NSButtonCell's -updateTrackingAreaWithFrame:inView: method? It's not documented, but shows up in the …
