将 NSTimer 保存到 NSUserDefaults
我正在为 iPhone 做一个简单的游戏,现在已经完成了,我想添加一个计时器。我设法实现了计时器,但现在我想在传入短信或电话最小化应用程序时暂停它。 我认为我应该将计时器放在应用程序委托中,并且当调用 applicationWillResignActive/applicationDidBecomeActive 时,使用 NSUserDefaults 保存/恢复计时器对象,但我发现我只能保存“原始”数据,而不是整个对象。 我该如何解决这个麻烦?
I'm doing a simple game for the iPhone and now that is finished, I'd like to add a timer. I managed to implement the timer, but now I want to pause it when an incoming SMS or Phone Call minimize the application.
I thought that I should put the timer in the app delegate and, when applicationWillResignActive/applicationDidBecomeActive will be called, save/restore the timer object with NSUserDefaults, but I see that I can only save "raw" data, not entire objects.
How can i manage this trouble?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将经过的时间存储在变量中(我不会使用 NSUserDefaults),然后创建一个新的计时器并减去经过的时间。
有关更多信息,请参阅此问题:如何以编程方式暂停 NSTimer?
You'll need to store the elapsed time in a variable (I wouldn't use NSUserDefaults) and then create a new timer with the elapsed time subtracted.
See this question for some more info: How can I programmatically pause an NSTimer?