JSONModel
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);
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。