Hi, I used this notification in objective-c with success :
{
NSNotificationCenter * center = [NSNotificationCenter defaultCenter];
[center addObserver:self selector:@selector(rowSelectionDidChange:)
name:NSTableViewSelectionDidChangeNotification object:nil];
// ...
}
With Swift I got 5 errors:
selector: #selector: ( NSTableView.rowSelectionDidChange(_:)),
name:"NSTableViewSelectionDidChangeNotification",
object: nil)
I hope you can teach me. Uwe