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?

link|improve this question

Locking manually doesn't work? Can't you just test that without the debugger? – seppo0010 Feb 1 '11 at 1:58
Nope, I don't see the bug unless it has locked up by itself. – Ben Feb 1 '11 at 2:50
feedback

2 Answers

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

link|improve this answer
Very good point but my bug is related to network stuff that I only see on wake up and I want to step through it all. – Ben Feb 1 '11 at 2:47
can you mock the incoming network info? – Mauricio Feb 1 '11 at 4:54
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?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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