views:

10

answers:

1

Hi all,

In my application I have taken a table view and displaying some NSString objects within it. User can also edit any row within it.

When I do not change color of NSTextFieldCell in NSTableColumn in IB, it shows default display property of table view ie. when a row is selected, text of selected row starts appearing white, but when I change it to some other color, say blue, then it starts appearing like this:

alt text

To resolve this problem I tried to set text color of cell in selected row as white in table delegate method: tableView:willDisplayCell:forTableColumn:row:, but it caused another problem- text remained white when edited, thus it became difficult for user to identify text entered:

alt text

Can anyone suggest me some suitable solution to resolve it?

Thanks,

Miraaj

A: 

Test whether the cell is highlighted. If it is, set its text color to [NSColor alternateSelectedControlTextColor]. If not, set it to blue (or [NSColor controlTextColor] for the regular text color).

Peter Hosey