Search code examples
iphoneobjective-ciosuiapplicationdelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions was not triggered


I used

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

to get the launchOptions.

But it was not triggered, even if I added the UIApplicationDelegate protocol.

Welcome any comment


Solution

  • Be sure the File's Owner delegate outlet is connected to your App delegate class in the main nib file, unless you want to set it programmatically:

    enter image description here