1.首先准备JSON及对象如下:
{
"userName": "向阳",
"userPass": "xiang",
"age": 10,
"ident": [
{
"price": 100.56,
"priceDate": "1987-06-13 00:00:00"
},
{
"price": 100,
"priceDate": "1987-06-13"
}
]
}
模型:Ident
@interface Ident : NSObject
@property(nonatomic,strong) NSNumber* price;
@property(nonatomic,strong) NSDate* priceDate;
@end
#import "Ident.h"
@implementation Ident
@end
模型:User (对象有包含关系时,在包含类的中需要申明一个modelContainerPropertyGenericClass方法,并标明对应属性以及转换的对象类。如这里的User包含了Ident)
#import <Foundation/Foundation.h>
#import "Ident.h"
@interface User : NSObject
@property(nonatomic,strong)NSString* userName;
@property(nonatomic,strong)NSString* userPass;
@property(nonatomic,strong)NSNumber* age;
@property(nonatomic,strong)NSArray<Ident*>* ident;
@end
#import "User.h"
#import "Ident.h"
@implementation User
// 返回容器类中的所需要存放的数据类型 (以 Class 或 Class Name 的形式)。
+ (NSDictionary *)modelContainerPropertyGenericClass {
return @{@"ident" : [Ident class]};
}
@end
2.使用方法(yy_modelWithJSON、yy_modelToJSONObject)
yy_modelWithJSON:将 JSON (NSData,NSString,NSDictionary) 转换为 Modelyy_modelToJSONObject:将Model转换成NSDictionary以及NSArray
1 User *user = [User yy_modelWithJSON:jsonString];2 NSLog(@"%@",user.ident[0].priceDate);3 // 将 Model 转换为 JSON 对象:4 NSDictionary *json = [user yy_modelToJSONObject];