到目前为止,我只解析了初始数组上的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响应,有人可以帮我吗?
最佳答案
你近了你需要:
NSDictionary *jsonArray = [NSJSONSerialization JSONObjectWithData: jsonResponse options: NSJSONReadingMutableContainers error: &e];
NSArray * responseArr = jsonArray[@"SongDeviceID"];
for (NSDictionary *dict in responseArr) {
// dict has two keys - SID and SDID
}
关于ios - 解析嵌套的JSON条目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18415329/