OC之KVC

作者: iOS小洁 | 来源:发表于2022-12-07 17:55 被阅读0次

    KVC

    KVC的全称是Key-Value Coding,俗称“键值编码”,可以通过一个key来访问某个属性

    常见的API有

    - (void)setValue:(id)value forKeyPath:(NSString *)keyPath;
    
    - (void)setValue:(id)value forKey:(NSString *)key;
    
    - (id)valueForKeyPath:(NSString *)keyPath;
    
    - (id)valueForKey:(NSString *)key; 
    

    setValue:forKey:的原理

    image-20220601173829649

    naccessInstanceVariablesDirectly方法的默认返回值是YES

    valueForKey:的原理

    image-20220601173914278

    相关文章

      网友评论

          本文标题:OC之KVC

          本文链接:https://www.haomeiwen.com/subject/lqcgfdtx.html