我知道网络上有很多关于这个的例子,但我已经尝试了一切,但我错过了一些东西。我想将 JSON 字符串解析成字典。
E 有服务器的这个响应:
{"type":"response", "action":"mkac", "result":"[{"Band":"Adele","Hits":422},{"Band":"Bryan Adams","Hits":93},{"Band":"Adai","Hits":30},{"Band":"Adamo","Hits":18},{"Band":"Adelle","Hits":15}]"}
我做:
NSError *parseError = nil;
NSDictionary *outputDictionary =
[NSJSONSerialization JSONObjectWithData: [output dataUsingEncoding:NSUTF8StringEncoding]
options: NSJSONReadingMutableContainers
error: &parseError];
NSLog(@"server said: %@", [outputDictionary objectForKey:@"result"]);
但是 outputDictionary 总是给我空值。
任何人都可以帮助我吗?
非常感谢。