0
votes
1answer
13 views
Closing a document’s window and opening a new one, without closing the document
My app is document-based, but the “document” consists of two folders, not one file. The document's initial window contains a couple of file pickers and a button; the action closes that window and …
1
vote
1answer
61 views
Ignoring UI Events in AppKit
If I wanted to ignore a touch event in UIKit on the iPhone I would simply do:
// Begin ignoring events
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
//Do my code
// Stop …
1
vote
1answer
50 views
NSApplicationWillTerminateNotification not received
I have some code that needs to be run when the application terminates. I register my controller for the NSApplicationWillTerminateNotification as follows:
[[NSNotificationCenter defaultCenter]
…
0
votes
1answer
74 views
Which Objective-C framework do I have to use to record my screen?
I'm already recording from my iSight from a python script using the pyobjc bridge and the QTKit framework.
Which framework/device/... should I use to capture the video of my screen instead of the …
0
votes
1answer
45 views
Huge memory leak in NSBitmapImageRep
I have a method that analyzes pixel data inside an NSBitmapImageRep that is built from a CGImageRef. Here is the relevant code:
CGImageRef ref;
// omitted code for initializing ref
NSBitmapImageRep …
2
votes
3answers
220 views
How can you suppress all logging in Cocoa app?
Is there a way to force suppression of all logging in a Mac OS X desktop Cocoa app?
Sometimes some part of the system or a plugin (which is out of your control) will log messages on behalf of your …
2
votes
8answers
304 views
What are your motivations for developing Software for Mac OSX?
I really like my Mac, and I am thinking about developing Software for it some time in the future. What are the reasons why you're making Mac Software? Because you think Mac is so cool? Or is the …
0
votes
2answers
113 views
What is responsible for releasing NSWindowController objects?
Lets say I display a window like so:
[[TBAddTaskWindowController new] showWindow:self];
Where is the TBAddTaskWindowController object meant to be released? Is the generic solution to call [self …
