ios – 如何从NSDictionary获取整数值?

前端之家收集整理的这篇文章主要介绍了ios – 如何从NSDictionary获取整数值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个奇怪的问题. NSDictionary没有返回正确的整数值.

来自服务器的JSON响应代码

{
"status":"ok","error_code":0,"data" : [],"msg":"everything is working!"
}

JSON正在转换为NSDictionary.

NSError *error = nil;
NSDictionary *jsonDict = [NSJSONSerialization
                          JSONObjectWithData:data
                          options:NSJSONReadingMutableContainers
                          error: &error];

我使用以下代码访问NSDictionary值.

int error_code = (int)[jsonDict valueForKey:@"error_code"]
NSLog(@"%i",error_code);
The log outputs the following: 143005344

我甚至尝试了objectForKey,并得到相同的回复.

提前致谢.

解决方法

是的,它输出值的指针,这就是为什么你看到这个日志输出.

您不能将指针转换为整数并期望该值.

int error_code = [[jsonDict valueForKey:@"error_code"] integerValue];

或者如果要使用现代目标c

int error_code = [jsonDict[@"error_code"] integerValue];
原文链接:https://www.f2er.com/iOS/336846.html

猜你在找的iOS相关文章