我觉得我不完全理解 KVO 和 NSNotification 之间的区别......它们看起来很相似......你能举个例子来说明什么时候最好使用一种方法,什么时候最好使用另一种方法吗?
我没有谈论 Bind 和 IB,但我的意思是使用 NSNotificationCenter 或 KVO 在我的代码中以编程方式添加 Observer
[self.preferenceController addObserver:self
forKeyPath:@"color"
options:NSKeyValueObservingOptionOld
context:@"Color-change"
];