推送数据到 NSUserDefault 后是否必须发送同步消息?

发布于 2024-11-29 04:44:38 字数 157 浏览 1 评论 0原文

只是好奇这是强制性的。例如,在我的应用程序中,我只需从 [NSUserDefaults standardUserDefaults] 推送并获取信息,而不需要“同步”调用。也许我错过了一些东西,但我还没有注意到任何问题:)。我知道这个调用应该在内存和磁盘数据之间进行同步,但为什么在我的情况下它不明显?

Just curious is it mandatory. For example in my app, I just push and get info from [NSUserDefaults standardUserDefaults] without any need of "synchronize" call. Maybe I'm missing something but I haven't noticed any problems (YET) :). I know that this call should make synchronization between in memory and on disk data but why it is unnoticeable in my case?

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

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

发布评论

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

评论(1

尬尬 2024-12-06 04:44:38

同步

因为该方法会定期自动调用,
仅当您无法等待自动执行时才使用此方法
同步(例如,如果您的应用程序即将退出)或
如果您想将用户默认值更新为磁盘上的内容,即使
您尚未进行任何更改。

这不是强制性的,但如果您更新数据并且您的应用程序在更新后立即被终止,您将丢失信息。

synchronize

Because this method is automatically invoked at periodic intervals,
use this method only if you cannot wait for the automatic
synchronization (for example, if your application is about to exit) or
if you want to update the user defaults to what is on disk even though
you have not made any changes.

It's not mandatory, but if you update data and your app gets killed right after, you will lose information.

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