I need to find a way to detect when a device has been locked, or else a way to detect when the device has been unlocked, and sent straight to the app where it left off. Is there some method like:

- (void)applicationDidBecomeActiveAfterLockScreen:(UIApplication *)application
link|improve this question

60% accept rate
feedback

1 Answer

up vote 1 down vote accepted

For detecting when phone is being unlocked and application is becoming active again, there is

- (void)applicationDidBecomeActive:(UIApplication *)application

method.

When the device is locked, a method

- (void)applicationWillResignActive:(UIApplication *)application

is called.

Both methods belong to the UIApplicationDelegate protocol.

See UIApplicationDelegate Protocol Reference.

link|improve this answer
Those happen at other times too, like an incoming phone call. – progrmr Jun 18 '10 at 1:14
is there a time limit on applicationWillResignActive, like on applicationWillTerminate, how if the function takes more than 5 seconds the function code execution is terminated. – z43 Studio Jul 1 '10 at 18:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.