如果我有一个JSON响应,如下所示:
"is_following": false,
如何在Objective-C中将其转换为BOOL?
这似乎不对:
[[NSNumber numberWithInt:(int)[profileData valueForKey:@"is_following"]] boolValue];
最佳答案
这取决于您使用的JSON解析器。例如,在使用TouchJSON的情况下,您只需在已解析的对象上调用boolValue
:[[profileData objectForKey:@"is_following"] boolValue]