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
1.setValue:forKey:的原理
- accessInstanceVariablesDirectly方法的默认返回值是YES
2.valueForKey:的原理
- accessInstanceVariablesDirectly方法的默认返回值是YES
KVO
KVO的全称是Key-Value Observing,俗称“键值监听”,可以用于监听某个对象属性值的改变
常见的API有:
- (void)addObserver:forKeyPath:options:context:
- (void)observeValueForKeyPath:ofObject:change:context:
1.KVO监听对象的本质
- 利用RuntimeAPI动态生成一个子类,并且让instance对象的isa指向这个全新的子类
- 当修改instance对象的属性时,会调用Foundation的_NSSetXXXValueAndNotify函数
2._NSSetxxxValueAndNotify的内部实现
- 调用willChangeValueForKey:
- 调用原来的setter实现
- 调用didChangeValueForKey:
- didChangeValueForKey:内部会调用observer的observeValueForKeyPath:ofObject:change:context:方法
网友评论