首页 > 代码库 > IOS自带json解析类解析json
IOS自带json解析类解析json
1 - (IBAction)test:(id)sender { 2 NSString *result = @"{\"code\":\"S00000\",\"message\":\"success\",\"data\":{\"file_name\":\"b1feba4439d0bed9f867123637121b24-dc7764fb24f7294c6a3dcb6971eddb25.png\",\"paths\":[\"x1\",\"x2\",\"x3\",\"x5\",\"x6\",\"x7\",\"x8\",\"xm\"]}}"; 3 NSError *error; 4 NSData* response = [result dataUsingEncoding:NSUTF8StringEncoding]; 5 6 NSDictionary *jsonInfo = [NSJSONSerialization JSONObjectWithData:response options:NSJSONReadingMutableContainers error:&error]; 7 NSString *code = [jsonInfo objectForKey:@"code"]; 8 9 NSLog([NSString stringWithFormat:@"%@",code]);10 11 NSDictionary *data = http://www.mamicode.com/[jsonInfo objectForKey:@"data"];12 NSLog([NSString stringWithFormat:@"%@",[data objectForKey:@"file_name"]]);13 }
第6行的NSJSONReadingOption是干嘛的没搞明白 用NSJSONReadingMutableLeaves也能正常解析
IOS自带json解析类解析json
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。