Skip navigation.
 
mlRe: Automatically Call a Function
FROM : Marcel Weiher
DATE : Sun Jun 15 20:31:15 2008

On Jun 15, 2008, at 10:09 , Philip Lee Bridson wrote:

> Firstly I need a function to automatically run from a class used in 
> MainMenu.nib when the main.m calls NSApplicationMain();


The NSApplication object provides this facility:

http://developer.apple.com/documentation/Cocoa/Reference/ApplicationKit/Classes/NSApplication_Class/Reference/Reference.html


--- snip ---
-applicationDidFinishLaunching:
Sent by the default notification center after the application has been 
launched and initialized but before it has received its first event.

- snip ---

You'll need to create that delegate object and hook it up to your 
application object.

> Also, I cannot figure out why when I initialize a window from a nib 
> or from a file before the call to NSApplicationMain() the program 
> crashes due to a memory leak.


Programs tend not to crash from memory leaks unless the leak is large
+long enough that you run out of memory.

> I have tried to put the function in awakeFromNib but then the window 
> wont close itself from that function.


awakeFromNib is not the appropriate place for this.

Marcel

Related mailsAuthorDate
mlAutomatically Call a Function Philip Lee Bridson Jun 15, 19:09
mlRe: Automatically Call a Function Stephen J. Butler Jun 15, 20:29
mlRe: Automatically Call a Function Marcel Weiher Jun 15, 20:31
mlRe: Automatically Call a Function Philip Lee Bridson Jun 15, 22:59
mlRe: Automatically Call a Function Ken Thomases Jun 15, 23:16
mlRe: Automatically Call a Function Philip Lee Bridson Jun 15, 23:25