gpt4 book ai didi

iphone - iOS JSONKit objectWithData 返回 null

转载 作者:行者123 更新时间:2023-11-28 19:15:08 24 4
gpt4 key购买 nike

我正在使用 JSONKit 来解析 JSON 字符串,出于某种原因,当尝试将 JSON 字符串分配给 NSDictionary 时,它返回 null


JSONDecoder *jsonDecoder = [[JSONDecoder alloc] initWithParseOptions:JKParseOptionNone];
NSData *jsonData = [NSData dataWithBytes:[jsonString UTF8String] length:[jsonString length]];
NSDictionary *tempDict = [jsonDecoder objectWithData:jsonData];

jsonString 保存内容,tempDict 等于NULL

谢谢!

最佳答案

如果你想支持 4.x,请不要使用 NSJSONSerialization。它仅在 5.0 中可用。

相反,您只需要像这样使用 JSONKit:

 NSDictionary *tempDict = [jsonString objectFromJSONString];

您无需将 JSON 字符串转换为 NSData 即可对其进行序列化。

关于iphone - iOS JSONKit objectWithData 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12656297/

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