+ (instancetype)newWithDictionary:(NSDictionary *)dict
{
news *newOne = [self new];
[newOne setValuesForKeysWithDictionary:dict];
return newOne;
}
如果使用KVC需要字典键值对和模型属性一一对应,但是重写下面方法,就可以解决这个问题
方法内部不需要写任何东西
- (void)setValue:(id)value forUndefinedKey:(NSString *)key
{
}