我有这个旧代码,如何使用NSJSONSerialization
完成?
以下使用SBJSON
+ (NSDictionary *) parseJSONResponse: (NSString *) response {
NSDictionary *dictionary = [response JSONValue];
return dictionary;
}
答案 0 :(得分:2)
您需要响应NSData才能执行以下操作:
NSError *error;
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];