iOS -- 给model赋值时走了[self setValuesForKeysWithDictionary:dic]不走setvalue: forked:

Posted ⬆️小马哥⬆️

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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:的主要内容,如果未能解决你的问题,请参考以下文章

iOS开发之使用Runtime给Model类赋值

C#控件给实体类赋值

django models 字体颜色

[iOS]为什么不要在init初始化方法里调用self.view

iOS 报错: [__NSArrayI removeAllObjects]: unrecognized selector sent to instance...?

python之self的理解