gpt4 book ai didi

ios - 从IOS中的json响应中提取错误代码

转载 作者:行者123 更新时间:2023-11-29 04:08:52 24 4
gpt4 key购买 nike

{ 
ErrorCodes = (
12
);
Success=0;
}

我有像上面这样的 json 响应,我想从错误代码中获取 12,以便我可以显示适当的错误消息。我就是这样做的

NSInteger err = [[dict objectForKey:@"ErrorCodes"] integerValue]; 

但这会给出异常错误,例如

[__NSArrayM integerValue]: unrecognized selector sent to instance

我做错了什么?以及如何将错误代码 12 转换为 NSInteger...

最佳答案

ErrorCodes 这里是一个数组,这就是您收到错误的原因。你应该尝试这样的事情:

[[[dict objectForKey:@"ErrorCodes"] objectAtIndex:0] integerValue];

关于ios - 从IOS中的json响应中提取错误代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14728414/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com