in both, 1) iPhone goes in Sleep mode 2) Open notification Center

It calls

- (void)applicationWillResignActive:(UIApplication *)application

Is there any way to identify if this method is called because device went in to sleep mode or by opening notification center?

link|improve this question

40% accept rate
Why would you like to distinct these 2 behaviors? Tell something more about your requirement, maybe we can have some other solutions to your real problem. – Tonny Xu Feb 3 at 13:56
Actually I've to load login screen again when the device goes in lock mode. And by any other way App goes in background then have to do nothing. – objectivecdeveloper Feb 4 at 7:23
feedback

2 Answers

There are some hacks to detect lock/unlock, but nothing official that couldn't break with a future iOS release.

link|improve this answer
feedback

OK, When you lock your screen/iPhone goes to sleep mode, the front most app(Your app) will go to background mode, and when you pull down the Notification Center, you app actually is not pushed to background.

So, you can use

- (void)applicationWillEnterForeground:(UIApplication *)application

or

- (void)applicationDidEnterBackground:(UIApplication *)application

to set a value, say bgFlag, in your app delegate class,

then, when - (void)applicationDidBecomeActive:(UIApplication *)application is invoked, you check whether bgFlag is set or not.

Good luck.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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