When an iOS app is woken up the applicationDidBecomeActive delegate 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?
feedback
|
|
just delegate your applicationDidBecomeActive to other method and unittest it. You are testing your code, not Apple's wakeup callback mechanism. | |||||
feedback
|
|
If the debugger is uncooperative, you can add NSLog statements to your code. Then you can read the logs after the program is finished. There's some information on getting old logs here: Is there a way to capture the ouput of NSLog on an iPhone when not connected to a debugger? | |||
|
feedback
|