I am using an NSLog statement in order to understand when -applicationDidBecomeActive: gets called, but it seems that it never gets called. Here is the code:
- (void)applicationDidBecomeActive:(UIApplication *)application {
NSLog(@"Some message");
}
The -viewDidLoad method seems to execute the very first time the application starts, but -applicationDidBecomeActive: never gets called. I click on the home button and reactivate the application several times, but still no message from -applicationDidBecomeActive:.
Please help!
Did you put this code in the Application Delegate file?