码迷,mamicode.com
首页 > 移动开发 > 详细

IOS - JSON数据解析 小3种方法

时间:2014-11-09 00:49:53      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   os   sp   数据   on   log   cti   

[manager GET:serverURL parameters:nil success:^(AFHTTPRequestOperation *operation, id responseObject) {

        // 3 解析返回的JSON数据

        // 3.1

//        NSDictionary *result1 = (NSDictionary *)responseObject;

        // 3.2

//        NSString *requestTmp = [NSString stringWithString:operation.responseString];

//        NSData *resData = [[NSData alloc] initWithData:[requestTmp dataUsingEncoding:NSUTF8StringEncoding]];

//        NSDictionary *result2 = [NSJSONSerialization JSONObjectWithData:resData options:NSJSONReadingMutableLeaves error:nil];

//        NSLog(@"response:%@",responseObject);

        

        // 3.3

        NSData *responseData = [NSJSONSerialization dataWithJSONObject:responseObject options:NSJSONWritingPrettyPrinted error:nil];

        NSDictionary *result3 = [NSJSONSerialization JSONObjectWithData:responseData options:NSJSONReadingMutableLeaves error:nil];

IOS - JSON数据解析 小3种方法

标签:http   io   ar   os   sp   数据   on   log   cti   

原文地址:http://www.cnblogs.com/tx8899/p/4084314.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!