如何在 ios 应用程序首选项设置中向文本字段写入值?

发布于 2024-11-30 00:55:41 字数 174 浏览 0 评论 0原文

在应用程序首选项设置中,我有文本字段。 文本字段的行为: 1. 当用户输入文本并启动应用程序时,将获取并处理输入的文本。 2.当用户清除textFiled并启动时,将动态生成一些文本,并且必须将动态生成的文本放回设置首选项中的textField。

有什么方法可以将值写入应用程序设置首选项中的 textField 吗?

In application preference settings i have text field.
Behavior of textField:
1. When user enters text and launch application, the entered text is taken and processed.
2. when user clears textFiled and launch, the some text will be generated dynamically and has to put back the dynamically generated text to textField in settings preferences.

Is there any way to write the value to textField in application settings preferences ?

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

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

发布评论

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

评论(1

疯狂的代价 2024-12-07 00:55:41

应用程序的 Settings.app 值存储在 NSUserDefaults 中。您应该能够通过以下方式设置它们:

[[NSUserDefaults standardUserDefaults]setValue:newValue forKey:@"theKeyYouDefinedInThePlist"]

The values of Settings.app for your application are stored in the NSUserDefaults. You should be able to set them with:

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