我通过 NSArrayController 使用绑定填充了 NSCollectionView。
All i am trying is to add an observer to either NSArrayController or NSCollectionView so that when ever the selection changes i got a call a function.
例如,这就是我为 NSTextField 更改所做的事情:
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(self.textDidChange(_:)), name: NSTextViewDidChangeSelectionNotification, object: nil)
我正在寻找正确的方法来做到这一点。