label color for selected row in NSTableview

1.6k Views Asked by At

I subclassed NSTableRowView in view-based NSTableView to change the selection color to a lighter blue instead of the default one.

Unfortunately when I select the row the color of the labels and textfields inside my custom cell turns white and it's not readable.

How can I prevent text from changing color on selection?

Solution Found:

All I had to do is to implement -setBackgroundStyle: in my custom NSTableCellView and there call the setBackgroundStyle:NSBackgroundStyleLight on the NSCell of all the controls I want to keep dark on selection.

3

There are 3 best solutions below

1
On BEST ANSWER

How did you change the selection color? This sounds like it could have been caused by you adding a subview or sublayer (perhaps to cell.selectedBackgroundView?) on top of the existing layers. If you have any insertSublayer or subView calls, make sure you are doing them atIndex:0.

1
On

OK I figured it out.

All I had to do is to implement -setBackgroundStyle: in my custom NSTableCellView and there call the setBackgroundStyle:NSBackgroundStyleLight on the NSCell of all the controls I want to keep dark on selection.

1
On

You'll need to make a custom NSCell.