使用YYKit框架中的YYModel
导入:#import "NSObject+YYModel.h"
可深度遍历
Model *model = [Model new];
[model setData];//调用给属性赋值的方法
NSDictionary *dic = [model modelToJSONObject];//将对象转成字典
Model *newModel = [Model new];
[newModel modelSetWithDictionary:dic];//给新的对象赋值