如何在 nsuserdefaults 或任何其他有效的方式中保存 slidervalue 和标签值?

发布于 2024-08-07 12:43:38 字数 288 浏览 4 评论 0原文

我有一个带有一个滑块和一个标签的视图。我正在使用滑块在标签上显示倒计时并在标签上设置时间。现在假设我已经启动了计时器,因此标签的值每分钟都在减少,滑块的值也在减少。现在我希望如果我关闭我的应用程序然后重新打开计时器应该已经在运行+标签的值是根据时间+滑块的值是根据时间?这是我正在做的图像

替代文字

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

alt text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

℉服软 2024-08-14 12:43:38

我不确定我是否遗漏了一些东西,但是将东西存储在 NSUserDefaults 中非常容易。要保存滑块的值:

[[NSUserDefaults standardUserDefaults] setFloat:[mySlider value] forKey:@"sliderValue"];

要保存标签的值:

[[NSUserDefaults standardUserDefaults] setValue:[myLabel text] forKey:@"textValue"];

要取回它们,只需将其反转即可:

[mySlider setValue:[[NSUserDefaults standardUserDefaults] floatForKey:@"sliderValue"]];

就我个人而言,我不会保存剩余时间的字符串表示形式,而只会保存浮点数。然后,您可以使用用于将浮点值转换为字符串表示形式的任何现有代码来恢复计时器的文本。

I'm not sure if I'm missing something, but storing stuff in NSUserDefaults is super easy. To save the slider's value:

[[NSUserDefaults standardUserDefaults] setFloat:[mySlider value] forKey:@"sliderValue"];

To save the label's value:

[[NSUserDefaults standardUserDefaults] setValue:[myLabel text] forKey:@"textValue"];

To get them back, simply reverse it:

[mySlider setValue:[[NSUserDefaults standardUserDefaults] floatForKey:@"sliderValue"]];

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.

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