一尘不染

如何将JSON序列化数据转换为NSDictionary

json

我用过这种方法

NSDictionary *jsonObject=[NSJSONSerialization 
       JSONObjectWithData:jsonData 
                  options:NSJSONReadingMutableLeaves 
                    error:nil];
NSLog(@"jsonObject is %@",jsonObject);

它正在打印“ jsonObject为null”。
“ error:nil”有什么问题吗?
我没有使用任何网址或连接方法。
我有一个json文件,我想在表中显示它。


阅读 265

收藏
2020-07-27

共1个答案

一尘不染

请尝试以下代码。

NSError* error;
NSDictionary* json = [NSJSONSerialization JSONObjectWithData:responseData
                                                     options:kNilOptions 
                                                       error:&error];

NSArray* latestLoans = [json objectForKey:@"loans"];

NSLog(@"loans: %@", latestLoans);
2020-07-27