NSTableview Change the highlight colour
I am developing a MAC application and included the tableView. Want to change the Colour of selected row to yellow. Set this on your table view: [yourtableview setSelectionHighlightStyle:NSTableViewSelectionHighlightStyleNone]; And implement the following delegate method of NSTableView as: - (void)tableView:(NSTableView *)aTableView willDisplayCell:(id)aCell forTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex { if ([[aTableView selectedRowIndexes] containsIndex:rowIndex]) { [aCell setBackgroundColor: [NSColor yellowColor]]; } else { [aCell setBackgroundColor: [NSColor