How to re-enable the idle timer in ios once it has been disabled (to allow the display to sleep again)?

Posted by lindon fox on Stack Overflow See other posts from Stack Overflow or by lindon fox
Published on 2012-10-12T09:29:14Z Indexed on 2012/10/12 9:37 UTC
Read the original article Hit count: 159

Filed under:

I have figured out how to stop an iOS device from going to sleep (see below), but I am having troubles undoing that setting. According to the Apple Documentation, it should just be changing the value of the idleTimerDisabled property. But when I test this, it does not work.

This is how I am initially stopping the device from going to sleep:

    //need to switch off and on for it to work initially
    [UIApplication sharedApplication].idleTimerDisabled = NO;
    [UIApplication sharedApplication].idleTimerDisabled = YES;

I would have thought that the following would do the trick:

    [UIApplication sharedApplication].idleTimerDisabled = NO;

From the Apple Documentation:


The default value of this property is NO. When most applications have no touches as user input for a short period, the system puts the device into a "sleep” state where the screen dims. This is done for the purposes of conserving power. However, applications that don't have user input except for the accelerometer—games, for instance—can, by setting this property to YES, disable the “idle timer” to avert system sleep.


Important: You should set this property only if necessary and should be sure to reset it to NO when the need no longer exists. Most applications should let the system turn off the screen when the idle timer elapses. This includes audio applications. With appropriate use of Audio Session Services, playback and recording proceed uninterrupted when the screen turns off. The only applications that should disable the idle timer are mapping applications, games, or similar programs with sporadic user interaction.


Has anyone come across this problem? I am testing on iOS6 and iOS5. Thanks in advance.

© Stack Overflow or respective owner

Related posts about ios