vote up 9 vote down star
6

Hello,

Is there a way to determine if the screen has been shut off via the top Power button?

I just need to know if the screen has been somehow set to off to kill a loop that updates location.

Thanks

flag

1 Answer

vote up 17 vote down check

Your Application delegate will receive a applicationWillResignActive: message just before the screen is locked (or when the phone rings or another window pops up). This is an excellent time to kill any idle-time processes. After re-activating, you'll receive an applicationDidBecomeActive: message, in which you can restart all this stuff.

link|flag
Note that you can subscribe to this message from within any class, you do not necessarily have to use the application delegate to receive the notification. – Kendall Helmstetter Gelner Nov 12 '08 at 3:10
Ben clearly answered your explicit question regarding "screen shutoff notifications." However, I think your question is a bit mis-guided since you mention that you just want to "kill a loop" when the screen is turned off. Your entire program (including the loop) will stop when about 20 seconds after the screen is turned off. It will then resume once the screen is turned back on. Just a helpful note for others who might assume they need to manually kill loops when the screen is shut off... – Clint Harris Apr 29 at 23:25

Your Answer

Get an OpenID
or

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