Re: When does AppDelegate:applicationDidFinishLaunching get called?
Jonathan Prescott
Since you referenced a Window, I’m assuming MacOS application, not iOS. Probably the same, but not sure since I don’t program for iOS.
toggle quoted message
Show quoted text
According to the documentation, applicationDidFinishLaunching is called by NSApplication just before entering into the application event loop. You could try applicationWillFinishLaunching, which is called just after the application object is initialized, which should be before any controllers are created, if that is appropriate. You could also override the init() method (Swift or Objective-C) if that makes sense. Jonathan On Jan 14, 2020, at 10:59 AM, Dave <dave@...> wrote: |
|