I want to detect click on cell in NSTableView so I did:
tableView.target = self;
tableView.action = @selector(tableViewClicked:);
but I saw that another @IBAction
's that connected to the cell does not work.
what could be the problem? thanks
I want to detect click on cell in NSTableView so I did:
tableView.target = self;
tableView.action = @selector(tableViewClicked:);
but I saw that another @IBAction
's that connected to the cell does not work.
what could be the problem? thanks