Search code examples
objective-ciphone-sdk-3.0uiapplicationdelegate

can we check applicationwillresignActive in iphone simulator?


- (void)applicationWillResignActive:(UIApplication *)application {
    NSLog(@"resigning active status...");
}

i have tried hardware-lock in iphone simulator but this isn't called. I do want to call it in another UIviewcontroller class not in the appdelegate itself.I also added in the viewController's header File.


Solution

  • According to the documentation, the "applicationWillResignActive" method will get called if the device is locked.

    As such pressing Command-L (or "Hardware" >> "Lock"" in the menu) will cause the iPhone simulator to lock and hopefully trigger this method.