Objective-C dictionary inserting a BOOL(插入 BOOL 的 Objective-C 字典)
问题描述
好吧,我有点困惑.这可能只是一件小事.
OK, I'm a little confused. It's probably just a triviality.
我有一个看起来像这样的函数:
I've got a function which looks something like this:
- (void)getNumbersForNews:(BOOL)news andMails:(BOOL)mails {
NSMutableDictionary *parameters = [[NSMutableDictionary alloc] init];
[parameters setValue:news forKey:@"getNews"];
[parameters setValue:mails forKey:@"getMails"];...}
无论我使用 setValue:forKey: 还是 setObject:ForKey: 都没有关系,我总是收到警告:
It doesn't matter whether I use setValue:forKey: or setObject:ForKey:, I'm always getting a warning:
传递 set 的参数 1... 使指针从整数而不进行强制转换"...
"Passing argument 1 of set... makes pointer from integer without a cast"...
我到底如何在字典中插入一个布尔值?
How on earth do I insert a bool into a dictionary?
推荐答案
NSDictionary 中的值必须是对象.要解决此问题,请将布尔值包装在 NSNumber 对象中:
Values in an NSDictionary must be objects. To solve this problem, wrap the booleans in NSNumber objects:
[parameters setValue:[NSNumber numberWithBool:news] forKey:@"news"];
[parameters setValue:[NSNumber numberWithBool:mails] forKey:@"mails"];
这篇关于插入 BOOL 的 Objective-C 字典的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:插入 BOOL 的 Objective-C 字典
基础教程推荐
- 如何从 logcat 中删除旧数据? 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
