How to test iPhone wake up code?

1.1k views Asked by At

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?

1

There are 1 answers

1
Mauricio On BEST ANSWER

just delegate your applicationDidBecomeActive to other method and unittest it. You are testing your code, not Apple's wakeup callback mechanism.