I need my application to open a window when a user double clicks on a row in an NSTableView. I\'m having a bit of a difficult time finding information or exampl
If someone looks for a swift 2.0 version: This is what works for me. Seems much easier than the Objective C code.
@IBOutlet weak var searchResultTable: NSTableView!
override func viewDidLoad() {
super.viewDidLoad()
searchResultTable.doubleAction = "doubleClickOnResultRow"
}
func doubleClickOnResultRow()
{
print("doubleClickOnResultRow \(searchResultTable.clickedRow)")
}