I have a NSTableView , i want to get the value present in the cell. I am having only one column so , i just need the row number
i can use this [tableView selectedRo
You should addObserver Notification like this
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tableViewSelectionDidChangeNotification) name:NSTableViewSelectionDidChangeNotification object:nil];
It will action when tableView selected row
good luck