我在使用 NSUserDefaults 时收到 SIGABRT

发布于 2024-11-24 14:47:36 字数 124 浏览 1 评论 0原文

以下行有时会抛出 SIGABRT:

[[NSUserDefaults standardUserDefaults] Synchronize];

我不知道为什么会这样。 顺便说一句,该应用程序是多线程的。

The following line sometimes throws SIGABRT:

[[NSUserDefaults standardUserDefaults] synchronize];

I have not idea why it happens.
By the way, the app is multithreaded.

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

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

发布评论

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

评论(2

北城挽邺 2024-12-01 14:47:36

NSUserDefaults 是线程安全的,这不是问题。您在默认值中过度释放了某些对象,并且同步在找到它时崩溃了。

NSUserDefaults is thread safe, that's not the problem. You are over releasing some object in your defaults and synchronize is crashing when it finds it.

沉溺在你眼里的海 2024-12-01 14:47:36

如果您在首选项上添加了键值观察器并且未实现

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void * )语境

This can also happen if you added a Key Value Observer on a preference and did not implement

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context

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