如何在Objective-C中的对象类型中包装BOOL
?
我想在BOOL
的{{1}}对象中存储userInfo
。我如何包装它?
答案 0 :(得分:32)
NSNumber *boolForUserInfo = @YES; // or [NSNumber numberWithBool:YES] the old way
[userInfo setObject:boolForUserInfo forKey:@"myBool"];
检索:
[[userInfo objectForKey:@"myBool"] boolValue];