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

iOS 字典或者数组和JSON串的转换

时间:2016-08-23 11:30:24      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

 

在和服务器交互过程中,会iOS 字典或者数组和JSON串的转换,具体互换如下:

// 将字典或者数组转化为JSON串
+ (NSData *)toJSONData:(id)theData
{
    NSError *error = nil;
    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:theData options:NSJSONWritingPrettyPrinted error:nil];
    
    if ([jsonData length]&&error== nil){
        return jsonData;
    }else{
        return nil;
    }
}

 

// 将JSON串转化为字典或者数组
+ (id)toArrayOrNSDictionary:(NSData *)jsonData{
    
    NSError *error = nil;
    id jsonObject = [NSJSONSerialization JSONObjectWithData:jsonData
                                                    options:NSJSONReadingAllowFragments
                                                      error:nil];
    
    if (jsonObject != nil && error == nil){
        return jsonObject;
    }else{
        // 解析错误
        return nil;
    }
    
}

 

iOS 字典或者数组和JSON串的转换

标签:

原文地址:http://www.cnblogs.com/jukaiit/p/5795833.html

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