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
subclass and set that to YES
if it is clicked and then I can successfully draw my custom selection. But how do I change that BOOL
var to NO
when another view is clicked? Thanks for any help.
EDIT: After reading through the NSTableView docs, it looks like I need to subclass NSTableRowView to override the selection drawing, but what do I do with my NSTableRowView subclass? How do I get the table to use it?