推送数据到 NSUserDefault 后是否必须发送同步消息?
只是好奇这是强制性的。例如,在我的应用程序中,我只需从 [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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
同步
这不是强制性的,但如果您更新数据并且您的应用程序在更新后立即被终止,您将丢失信息。
synchronize
It's not mandatory, but if you update data and your app gets killed right after, you will lose information.