NSUserDefaults 重置

发布于 2024-11-15 13:53:33 字数 315 浏览 2 评论 0原文

可能的重复:
如何重置 iPhone 中的 NSUserDefaults 数据模拟器?

我们可以同时重置所有按键的 NSUserDefaults 吗? 现在我重置了各个按键。因此,如果有一种方法可以一次性做到这一点,请告诉我。

谢谢

Possible Duplicate:
How can I reset the NSUserDefaults data in the iPhone simulator?

Can we reset NSUserDefaults for all the keys at the same time?
Right now I reset for individual keys. So if there is a way to do that in a single go please tell me.

Thanks

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

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

发布评论

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

评论(1

勿忘心安 2024-11-22 13:53:33

以下是如何在不循环所有值并删除它们的情况下执行此操作。

NSString *domainName = [[NSBundle mainBundle] bundleIdentifier];
[[NSUserDefaults standardUserDefaults] removePersistentDomainForName:domainName];

Here is how to do it without looping over all values and removing them.

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