2
votes
2answers
203 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 …
2
votes
Device Information from NSEvent/CGEvent
Hi Kevin,
You might want to take a look at DDHidLib, Dave Dribin's excellent framework to work with USB HID devices independently.
…
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 …
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 …
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
…
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 …
2
votes
How to give NSWindow a particular background color
Try calling the instance method setBackgroundColor: with a color on your window instance. What's in a name.. ;)
…
1
vote
Best resource to learn application programming? (.Net/Cocoa/etc)
A good book on design patterns will take you a long way in getting a feel for how to work with some of the built in structures in cocoa, like awakwFromNib, windowDidLoad, etc.
Here's one re …
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 …
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 …
