How can I keep the iPhone from sleeping?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
To stop your app from timing out and going to sleep you can use:
This will, obviously, disable the idle timer and stop your iphone from automatically going into sleep mode. Edit: As middaparka stated you should re-enable the idle timer when you no longer need to keep the phone awake (generally after that view has been removed) using:
Cheers |
||||
|
|
|
You can disable the automatic locking via...
However, you should really only do this within as few sections of your app as possible, and then re-enable it via...
...in the relevant view controller's |
|||
|
|