How to test iPhone wake up code?
When an iOS app is woken up the applicationDidBecomeActive del开发者_如何学编程egate is called.
If a device is attached to the debugger then the app will never sleep.
How do I debug problems in the wake up code?
just delegate your applicationDidBecomeActive to other method and unittest it. You are testing your code, not Apple's wakeup callback mechanism.
精彩评论