I have a Cocoa App (fairly complicated with OpenGL calls and external IO and serial line ...).
A while back I made some modifications and now my applicationDidFinishLaunching
is not called anymore! So far I couldn't find out way (I have my project under source control but I can't find the culprit yet!).
But the stranger thing is the applicationShouldTerminate
and applicationShouldTerminateAfterLastWindowClosed
.
My question is why applicationShouldTerminate
is being called while applicationDidFinishLaunching
which is in the same .m
file in same @implementation
is not called.
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification