使用“NO”时出现 Objective C 分段错误NSDictionary 中的值

发布于 2024-11-03 16:56:02 字数 42 浏览 1 评论 0原文

为什么在 NSDictionary 中使用 NO 值时会出现分段错误?

Why do I get a Segmentation Fault when using a NO value in an NSDictionary?

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

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

发布评论

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

评论(1

坏尐絯 2024-11-10 16:56:02

您只能将对象的实例放入字典、集合或数组中。
不允许使用原始类型,因此会出现分段错误。

使用 NSNumber 代替:

[ dict setObject: [ NSNumber numberWithBool: yourBool ] forKey: @"..." ];

You can only put instances of objects in a dictionary, set or array.
Primitive types are not allowed, hence the segmentation fault.

Use a NSNumber instead:

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