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

直奔主题:在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 plain copy
  1. //objectFromJSONData直接使用data转字典  
  2. NSData *data = [@"{\"id\":1,\"age\":\"2\"}" dataUsingEncoding:NSUTF8StringEncoding];   
  3. 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 plain copy
  1. // Product.h  
  2. @interface Product : Jastor//一定要继承Jastor类  
  3. @property (nonatomic, copy) NSString *name;  
  4. @property (nonatomic, copy) NSNumber *amount;  
  5. @end  
  6.   
  7. // Product.m  
  8. @implementation Product  
  9. @synthesize name, amount;  
  10. @end  
  11.   
  12. // 关键代码  
  13. Product *product = [[Product alloc] initWithDictionary:result];//Jastor中的转化函数  

你可能感兴趣的:(json,object,ios,工具,服务器,html,IOS)