首页 > 代码库 > iOS -- 给model赋值时走了[self setValuesForKeysWithDictionary:dic]不走setvalue: forked:
iOS -- 给model赋值时走了[self setValuesForKeysWithDictionary:dic]不走setvalue: forked:
这是一个小坑, 看看你的BaseModel的便利构造器的方法:
+ (__kindof BaseModel *)modelWithDic:(NSDictionary *)dic { return [[self alloc] initWithDic:dic];}
self 一定要写成self, 这样才会调用子类的setvalue的方法. 不要写成BaseModel.
BaseModel.m中的代码如下:
- (instancetype)initWithDic:(NSDictionary *)dic { self = [super init]; if (self) { [self setValuesForKeysWithDictionary:dic]; } return self;}+ (__kindof BaseModel *)modelWithDic:(NSDictionary *)dic { return [[self alloc] initWithDic:dic];}- (void)setValue:(id)value forUndefinedKey:(NSString *)key { }- (id)valueForUndefinedKey:(NSString *)key { return nil;}
iOS -- 给model赋值时走了[self setValuesForKeysWithDictionary:dic]不走setvalue: forked:
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。