在应用程序崩溃或用户点击主退出按钮之前重新启用空闲计时器?
我正在编写一个禁用空闲计时器的应用程序。如何在应用程序崩溃或用户点击主退出按钮之前重新启用它?否则会耗尽电池,这可能会非常糟糕。
I am writing an app that disables the idle timer. How do I re-enable it prior to app crashing out or user hitting the main exit button? This could be real bad by draining the battery otherwise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
- (void)applicationWillResignActive:(UIApplication *)application
方法中重新启用它。您可以使用:
[[UIApplication sharedApplication] setIdleTimerDisabled:NO]
。当您的应用程序激活时,不要忘记再次禁用它。You can reenable it in the
- (void)applicationWillResignActive:(UIApplication *)application
method.You can use this:
[[UIApplication sharedApplication] setIdleTimerDisabled:NO]
. Don't forget to disable it again when your app becomes active.