如何获取链接的数据:https : //itunes.apple.com/us/rss/topalbums/limit=10/json 使用 ios6.1 xcode 4.6。
大部分代码是针对 ios5 的,很少使用 jsonKit。但是ios现在有任何内置的json解析吗?
我期待仅用于 ios6.1 而不是旧版本。
NSError *requestError = NULL;
NSDictionary *myDict = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&requestError];
if (requestError){
//An error occurred.
}
+JSONObjectWithData 的返回类型是 id。它可以返回一个 NSDictionary 或一个 NSArray。选择适合您的 JSON 数据结构的那个。
responseData 是您响应中的数据。如果您有要解析的字符串,请将其转换为 NSData:https ://stackoverflow.com/a/6188605/985050