这就是我最初阻止设备进入睡眠的方式:
//need to switch off and on for it to work initially [UIApplication sharedApplication].idleTimerDisabled = NO; [UIApplication sharedApplication].idleTimerDisabled = YES;
我原以为会有以下几种方法:
[UIApplication sharedApplication].idleTimerDisabled = NO;
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.
有人遇到过这个问题吗?我在iOS6和iOS5上测试.提前致谢.