In addition to Robert Payne's correct answer using Swift, you can add an extension to NSTableView, not a subclass.
extension NSTableView { override public func validateProposedFirstResponder(responder: NSResponder, forEvent event: NSEvent?) -> Bool { return true } }
And I would like to emphasize that this is an NSTableView, not an NSTableViewCell.
Gary makin
source share