Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS: Check if the Phone is Locked

Tags:

ios

iphone

Is there a way to check if the phone is locked? Or do I receive a notification of the phone is going to be locked?

My app runs in the background, continues to play audio, so applicationWillResignActive: isn't really what I am looking for.

like image 721
TurqMage Avatar asked Nov 01 '11 16:11

TurqMage


1 Answers

Checkout UIApplicationProtectedDataWillBecomeUnavailable. This appears to be called when the device is locked. iOS4 + only.

UIApplicationProtectedDataWillBecomeUnavailable

http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AdvancedAppTricks/AdvancedAppTricks.html

like image 149
logancautrell Avatar answered Sep 30 '22 19:09

logancautrell