I have a custom cell class which inherits from NSTextFieldCell (which in turn inherits from NSCell).
I override the initTextCell: method and in there I change the cell's background color:
[self setBackgroundColor:[NSColor redColor]];
[self setDrawsBackground:YES];
This all works fine and the cell's background appears red as expected.
The problem is when I try to change the background color afterwards it never gets changed. My custom cell is a KVO observer for another object.
I implement this method:
- (void) observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
[self setBackgroundColor:[NSColor blueColor]];
}
This method gets called properly but the cell color never changes to blue.
Is there anything else I need to call to force the cell to update itself?
Any help would be appreciated.