Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I keep the iPhone from sleeping?

share|improve this question

2 Answers

up vote 30 down vote accepted

To stop your app from timing out and going to sleep you can use:

[UIApplication sharedApplication].idleTimerDisabled = YES;

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:

[UIApplication sharedApplication].idleTimerDisabled = NO;

Cheers

share|improve this answer
Or viewWillDisappear. – mattcurtis May 24 at 20:54

You can disable the automatic locking via...

[[UIApplication sharedApplication] setIdleTimerDisabled:YES];

However, you should really only do this within as few sections of your app as possible, and then re-enable it via...

[[UIApplication sharedApplication] setIdleTimerDisabled:NO];

...in the relevant view controller's dealloc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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