将 NSTimer 保存到 NSUserDefaults

发布于 2024-10-01 11:43:25 字数 230 浏览 2 评论 0原文

我正在为 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 技术交流群。

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

发布评论

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

评论(1

如歌彻婉言 2024-10-08 11:43:25

您需要将经过的时间存储在变量中(我不会使用 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?

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