标签:字典转模型
+ (instancetype)newWithDictionary:(NSDictionary *)dict
{
news *newOne = [self new];
[newOne setValuesForKeysWithDictionary:dict];
return newOne;
}
如果使用KVC需要字典键值对和模型属性一一对应,但是重写下面方法,就可以解决这个问题
方法内部不需要写任何东西
- (void)setValue:(id)value forUndefinedKey:(NSString *)key
{
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:字典转模型
原文地址:http://blog.csdn.net/u010438187/article/details/46876065