使用滑块/实用应用程序的应用程序内用户首选项

发布于 2024-12-22 10:25:45 字数 237 浏览 2 评论 0原文

我正在使用实用程序应用程序。

另一方面,我有一个滑块,我想用它来设置(应用程序内)用户首选项。

假设用户在翻转窗口中将滑块的值设置为 40,然后单击“完成”并返回主窗口。 主窗口将使用该值 40。此外,即使在应用程序关闭/打开或设备(iphone、ipad)关闭/打开后,该值也必须保持不变。

您能否举例说明或向我指出有关如何执行此操作的文档? 这是通过 Settings.bundle 完成的吗? 非常感谢!

I'm using an Utility Application.

On the flip side I have a slider which I want to use for setting the (in-app) User Preference.

Say the user sets the value of the slider to 40 in the flip window, then click "Done" and return to the main window.
The main window will use this value of 40. Also, the value has to stay persistent even after the application is closed / open or the device (iphone, ipad) is switched off / on.

Can you please example or point me to documentation on how do I do that?
Is this done with Settings.bundle?
Many thanks!

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

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

发布评论

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

评论(1

jJeQQOZ5 2024-12-29 10:25:45

使用 存储和检索您的值NSUserDefaults

CGFloat value = [[NSUserDefaults standardUserDefaults] floatForKey:@"valueKey"];

阅读和写作:

[[NSUserDefaults standardUserDefaults] setFloat:value forKey:@"valueKey"];

Store and retrieve your values using NSUserDefaults.

CGFloat value = [[NSUserDefaults standardUserDefaults] floatForKey:@"valueKey"];

To read, and to write:

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