如何在应用程序委托中的 applicationWillResignActive 上区分锁定屏幕和主页按钮(后台多任务处理)

发布于 2024-10-14 03:48:15 字数 298 浏览 5 评论 0原文

我正在写一个闹钟应用程序。

如果我错了,请纠正我:

在这两个事件(iOS 4.x 中的锁定和主页按钮)上,都会调用 applicationWillResignActive: 方法。锁定时,我的应用程序可以继续运行(如果使用 DeepSleepPreventer.h,则永远运行)以检查警报是否应该响起。当按下 home 时,它​​必须在某个时候停止工作(除了一些基本的后台计算之外)。所以在这种情况下我必须设置一个本地 UILocalNotification 来触发警报。

所以我的问题:如何区分这两个事件?

谢谢你!

I am writing an alarm clock app.

Please correct me if I am wrong:

On both events (lock & home button in iOS 4.x) the applicationWillResignActive: method is called. When locked my app can keep on running (forever if DeepSleepPreventer.h is used) to check if the alarm should go off. When home is pressed it has to stop working at some time (apart from some basic background calculations). So in this case I have to set a local UILocalNotification to trigger the alarm.

So my question: How to differentiate between those two events?

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

长梦不多时 2024-10-21 03:48:15

您是否尝试过在应用程序委托中实现 -applicationDidEnterBackground:

Have you tried implementing -applicationDidEnterBackground: in your app delegate?

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