如何在应用程序委托中的 applicationWillResignActive 上区分锁定屏幕和主页按钮(后台多任务处理)
我正在写一个闹钟应用程序。
如果我错了,请纠正我:
在这两个事件(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过在应用程序委托中实现
-applicationDidEnterBackground:
?Have you tried implementing
-applicationDidEnterBackground:
in your app delegate?