Does someone have a easy-to-understand example what this Application object is good for? Why is it there? And in what cases do I need it?
views:
359answers:
1
+2
Q:
Objective-C / Cocoa: What is the "Application" proxy object in Interface Builder / Nib good for?
+3
A:
It's a pointer to the shared NSApplication object. See the class reference for everything NSApplication can do, but basically the reason you see it in your IB window is so you can easily set the delegate to your controller object, and hook up menu commands like terminate:.
Marc Charbonneau
2009-03-01 02:49:24