ios开发 yymodel可以模型转变成字典吗

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios开发 yymodel可以模型转变成字典吗相关的知识,希望对你有一定的参考价值。

要的是自动转换的话,那样就需要通过objc的函数遍历模型的属性,然后转换成字典的 key-value ,还要考虑数据类型兼容问题,不然会有bug,具体做法可以参考 JsonModel 的实现,如果是手动转换,那就初始化一个 NSMutableDictionary,然后一个个属... 参考技术A

yy_modelToJSONObject

就可以咯。

/**
 Generate a json object from the receiver's properties.
 
 @return A json object in `NSDictionary` or `NSArray`, or nil if an error occurs.
 See [NSJSONSerialization isValidJSONObject] for more information.
 
 @discussion Any of the invalid property is ignored.
 If the reciver is `NSArray`, `NSDictionary` or `NSSet`, it just convert
 the inner object to json object.
 */
- (nullable id)yy_modelToJSONObject;

OC_YYModel字典转模型的几种详细用法

目录

  • 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与模型之间的转化方法(自己看代码吧~

以上是关于ios开发 yymodel可以模型转变成字典吗的主要内容,如果未能解决你的问题,请参考以下文章

iOS YYModel的使用

iOS YYModel的使用

iOS YYModel的使用

iOS之深入解析YYModel的底层原理

iOS Json转换模型库:YYModel

iOS Json转换模型库:YYModel