如何在 nsuserdefaults 或任何其他有效的方式中保存 slidervalue 和标签值?
我有一个带有一个滑块和一个标签的视图。我正在使用滑块在标签上显示倒计时并在标签上设置时间。现在假设我已经启动了计时器,因此标签的值每分钟都在减少,滑块的值也在减少。现在我希望如果我关闭我的应用程序然后重新打开计时器应该已经在运行+标签的值是根据时间+滑块的值是根据时间?这是我正在做的图像
i have a view with one slider and a label.i am showing a countdown on label and setting time on label using slider.now suppose i have started the timer so the label's value is decreasing every minute and slider's value is also decreasing.now i want that if i close my app and then reopen the timer should be already running+label's value is according to time+slider value is according to time? here is an image what i am doing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否遗漏了一些东西,但是将东西存储在 NSUserDefaults 中非常容易。要保存滑块的值:
要保存标签的值:
要取回它们,只需将其反转即可:
就我个人而言,我不会保存剩余时间的字符串表示形式,而只会保存浮点数。然后,您可以使用用于将浮点值转换为字符串表示形式的任何现有代码来恢复计时器的文本。
I'm not sure if I'm missing something, but storing stuff in NSUserDefaults is super easy. To save the slider's value:
To save the label's value:
To get them back, simply reverse it:
Personally, I wouldn't save the string representation of the time left, just the float. You can then restore the timer's text using whatever existing code you're using to convert the float value to a string representation.