到目前为止,我只解析过初始数组上的 JSON,但不确定如何继续。
这是我的 JSON:
{
"SongDeviceID": [
{
"SID": "714",
"SDID": "1079287588763212246"
},
{
"SID": "715",
"SDID": "1079287588763212221"
},
{
"SID": "716",
"SDID": "1079287588763212230"
}
]
}
到目前为止,这是我的代码中的内容:
NSDictionary *jsonArray = [NSJSONSerialization JSONObjectWithData: jsonResponse options: NSJSONReadingMutableContainers error: &e];
NSArray * responseArr = [NSArray arrayWithObject:jsonResponse];
for (NSDictionary *dict in responseArr)
我认为我这样做是错误的,因为我以前只有一层深度 JSON 响应,有人可以帮助我吗?