iPhone倒计时事件
我只是想知道如何倒数偶数或一天?我在谷歌上做了一些搜索,但我得到了一些信息来制作这个应用程序,他们告诉我应该使用 NSDate 和 NSCalendar。但是我想存储所有信息并且用户可以在重新打开应用程序时加载,我应该使用 sqlite 还是 core数据?谢谢
I just want to know how to make a count down for a even or a day? i did some search on google but I got got some few information to make this application ,they told me should be using NSDate and NSCalendar.however I want to stored all information and user can load when reopen the application ,should I using sqlite or core data? thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ben,
当您的应用程序再次激活时:
(即)-
(void)applicationDidBecomeActive:(UIApplication *)application
启动计时器来检查时间是否已过期:
每当您的应用收到问候时,计时器检查就会无效
,
Ken
Ben,
When your app become active again:
(i.e.) -
(void)applicationDidBecomeActive:(UIApplication *)application
Start a timer to check to see if the time has expired:
Invalidate the timer check whenever your app gets
Regards,
Ken