How do I go about drawing my own custom selection style for a view based NSTableView? I tried putting a BOOL var in my NSTableCellView
NSTableView
BOOL
NSTableCellView
To make things clear, I think we should give the code of the delegate method :
- (NSTableRowView *)tableView:(NSTableView *)tableView rowViewForRow:(NSInteger)row { MyNSTableRowView *rowView = [[MyNSTableRowView alloc]init]; return rowView; }