- 在开发中,如果一个model中包含其它的model,YYModel提供了一个很好的方法来自动将josn数据进行转换:
+ (NSDictionary *)modelContainerPropertyGenericClass {
return @{@"children":[LevelItem class],@"parent":[LevelItem class]};
}
- 在开发中,如果一个model中有属性需要初始化,YYModel提供了一个很好的方法来自动将该属性进行初始化赋值:
- (BOOL)modelCustomTransformFromDictionary:(NSDictionary *)dic {
self.isClick = YES;
self.selectTitleColor = [UIColor redColor];
return YES;
}
今年工作实在太忙,等得闲后开始提炼一些知识点,记录自己的提升,也与人方便!
网友评论