您的位置:首页 > 移动开发 > Objective-C

IOS json 转 Object / ios json to Object / ios json convert Object

2012-08-31 10:26 447 查看
直奔主题:在ios平台做通用的json数据解析,直接将json格式字符串转化成 对应的Object类(比如:jsonUser 转 User对象)。

思路: 1. 获取服务器端的json数据,然后解析成NSDictionary对象(我们一般是使用第三方的json解析工具JSONKit,SBJson等)。

2. 使用第三方工具Jastor将NSDictionary 转成 响应Object对象。

ok,现在跟大家列出关键代码:

1.首先我使用的JSONkit将json字符串解析为NSDictionary对象(参考:http://blog.csdn.net/ck89757/article/details/7842846 )

[cpp] view
plaincopy

//objectFromJSONData直接使用data转字典

NSData *data = [@"{\"id\":1,\"age\":\"2\"}" dataUsingEncoding:NSUTF8StringEncoding];

NSDictionary *result = [data objectFromJSONData];//JSONKit中的解析函数 objectFromJSONData

2.创建Object对象,使用Jastor 将NSDictionary 转成 Product对象 (Jastor下载和用法参考https://github.com/elado/jastor,在该地址下载下Jastor包后,直接将Jastor文件夹拉到ios项目中,只有4个文件Jastor.h、Jastor.m、JastorRuntimeHelper.h、JastorRuntimeHelper.m)

[html] view
plaincopy

// Product.h

@interface Product : Jastor//一定要继承Jastor类

@property (nonatomic, copy) NSString *name;

@property (nonatomic, copy) NSNumber *amount;

@end

// Product.m

@implementation Product

@synthesize name, amount;

@end

// 关键代码

Product *product = [[Product alloc] initWithDictionary:result];//Jastor中的转化函数
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: