Here is my code:
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
NSRunAlertPanel(@"", @"", @"", @"", @"");
}
I have this, just to test it out, and for some reason, the NSRunAlertPanel is not triggering after the app starts...this is a problem because there are many "init" things that are necessary for my app to run.
Are there any other ways of doing this? why is this happening?