方法
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
}
有一个参数change
,它是一个字典,其中包含有关值更改性质的信息,我如何找出这本字典中的内容?
方法
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
}
有一个参数change
,它是一个字典,其中包含有关值更改性质的信息,我如何找出这本字典中的内容?
这是更改字典使用的键的列表。
提取物:
更改字典使用的键
这些常量用作传递给的更改字典中的键
observeValueForKeyPath:ofObject:change:context:
。NSString *const NSKeyValueChangeKindKey; NSString *const NSKeyValueChangeNewKey; NSString *const NSKeyValueChangeOldKey; NSString *const NSKeyValueChangeIndexesKey; NSString *const NSKeyValueChangeNotificationIsPriorKey;