在应用程序崩溃或用户点击主退出按钮之前重新启用空闲计时器?

发布于 2024-11-15 10:18:29 字数 71 浏览 3 评论 0原文

我正在编写一个禁用空闲计时器的应用程序。如何在应用程序崩溃或用户点击主退出按钮之前重新启用它?否则会耗尽电池,这可能会非常糟糕。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

任性一次 2024-11-22 10:18:29

您可以在 - (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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文