目录
- JSON转字符串
- 普通字典转模型
- 模型属性有自定义的模型YYUSer
- 属性有数组(数组里自定义模型),还有字典和集合
- 字典里的key与模型里的属性名不一致
常用的几个方法:
# json转模型
+ (instancetype)yy_modelWithJSON:(id)json;
# 模型转字符串
- (NSString *)yy_modelToJSONString
# 字典转模型
+ (instancetype)yy_modelWithDictionary:(NSDictionary *)dictionary ;
# 声明数组、字典或者集合里的元素类型时要重写
+ (nullable NSDictionary<NSString *, id> *)modelContainerPropertyGenericClass;
# 字典里的key值与模型的属性值不一致要重复
+ (nullable NSDictionary<NSString *, id> *)modelCustomPropertyMapper;
# 下面两者是属性值在两个dic与模型之间的转化方法(自己看代码吧~