NSTableView - Disable Row Selection
I think
- (BOOL)selectionShouldChangeInTableView:(NSTableView *)aTableView
{
return NO;
}
is better than
- (NSIndexSet *)tableView:(NSTableView *)tableView selectionIndexesForProposedSelection:(NSIndexSet *)proposedSelectionIndexes
While the previous answers work, this is another option which I prefer to use:
- (BOOL)tableView:(NSTableView *)aTableView shouldSelectRow:(NSInteger)rowIndex
{
return NO;
}
I think you'll need to use a TableViewDelegate and implement
- (NSIndexSet *)tableView:(NSTableView *)tableView
selectionIndexesForProposedSelection:(NSIndexSet *)proposedSelectionIndexes
Swift 4.0
func tableView(_ tableView: NSTableView, shouldSelectRow row: Int) -> Bool {
return false
}