字典转模型的时候,如果字典键值对比模型属性多,解决方法

+ (instancetype)newWithDictionary:(NSDictionary *)dict

{

    news *newOne = [self new];

    [newOne setValuesForKeysWithDictionary:dict];

    return newOne;

}

如果使用KVC需要字典键值对和模型属性一一对应,但是重写下面方法,就可以解决这个问题

方法内部不需要写任何东西

- (void)setValue:(id)value forUndefinedKey:(NSString *)key

{

    

}


你可能感兴趣的:(技术博客)