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

JSONModel

时间:2015-04-29 19:26:39      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

1 //仅仅声明属性的类,称为实体类(模型类)
2 //Student.h中声明属性
3 @property(strong,nonatomic)NSString *name;
4 @property(assign,nonatomic)int age;
5 @property(strong,nonatomic)NSArray *array;
//导入JSONModel第三方库
//在AppDelegate.h中引入学生类的头文件
//在AppDelegate.m要写的代码
//JsonModel作用为将数据转换成模型
NSString *str=@"{\"name\":\"zhangsan\",\"age\":20,\"array\":[\"a\"]}";
//用数据初始化对象
Student *stu=[[Student alloc]initWithString:str error:nil];
NSLog(@"%@",stu);
NSLog(@"%@",stu.toDictionary);
NSLog(@"%@",stu.toJSONString);

 

JSONModel

标签:

原文地址:http://www.cnblogs.com/y16879w/p/4466630.html

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