In my case, the solution was: move the super call to the beginning of didFinishLaunchingWithOptions method implementation- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[super application:application didFinishLaunchingWithOptions:launchOptions];
…
return YES;
}