Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I work on jailbreak iphone, I want to know when user unlock the screen of iphone,is there any notification for unlock sreen by slide to unlock iphone? Thanks >>>>

share|improve this question

1 Answer

From apple docs: use UIApplicationDidBecomeActiveNotification. This works only if your app is running so if you want to trigger some action on a background app running in a jailbroken device this is not the right solution.

UIApplicationDidBecomeActiveNotification Posted when the application becomes active. An application is active when it is receiving events. An active application can be said to have focus. It gains focus after being launched, loses focus when an overlay window pops up or when the device is locked, and gains focus when the device is unlocked.

Availability Available in iOS 2.0 and later. Declared In UIApplication.h

share|improve this answer
thanks,I want to lanuch my application when user unlock the screen. – user xxhp Aug 12 '11 at 8:38
it could be a nice idea, but what happens if another app does the same? anyway I don't work with jailbroken devices, so I cannot be of further help for you. – viggio24 Aug 12 '11 at 9:05
thanks,when my app was suspended in background ,I did received the UIApplicationDidBecomeActiveNotification when unlocking the screen,but unlock the screen to enter the springboard when my app was killed, UIApplicationDidBecomeActiveNotification was never fired. – user xxhp Aug 15 '11 at 1:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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