标签:coding code path odi 图片 width nsstring pre 常见
KVC的全程是Key-Value Coding, 俗称"键值编码",可以通过一个key来访问属性
常见的AP有
- (void)setValue:(nullable id)value forKey:(NSString *)key; - (void)setValue:(nullable id)value forKeyPath:(NSString *)keyPath; - (nullable id)valueForKey:(NSString *)key; - (nullable id)valueForKeyPath:(NSString *)keyPath;
提示:通过KVC访问对象的属性赋值,不管是否存在Set方法,都是会触发KVO的监听方法的
标签:coding code path odi 图片 width nsstring pre 常见
原文地址:https://www.cnblogs.com/CoderHong/p/10888881.html