我必须在iPad上下载一个很大的文件。 (iOS5,iOS6)

为了防止iPad屏幕进入睡眠状态,我使用:

[UIApplication sharedApplication].idleTimerDisabled = YES;


但这是行不通的。

有人能帮我吗?

最佳答案

尝试做:

[UIApplication sharedApplication].idleTimerDisabled = NO;
[UIApplication sharedApplication].idleTimerDisabled = YES;


See this answer for more information.

07-27 22:21