Re: NSTableColumn dataCellForRow:

2011-03-22 Thread William Weygandt
Thank you for the quick reply. Implementing 'tableView:willDisplayCell:forTableColumn:row:' is exactly what I needed. Just want to change cell attributes. I thought the only way to do this was to subclass 'dataCellForRow:', especially since it was 'pointed out' in the documentation. Bu

Re: NSTableColumn dataCellForRow:

2011-03-21 Thread Quincey Morris
On Mar 21, 2011, at 16:16, William Weygandt wrote: > I need to set attributes for a TableColumn cell, based on its row, > leaving the cells of other rows, unchanged. I tried using the method > dataCellForRow:. I just can't seem to make this work. Not sure I can > subclass this because

NSTableColumn dataCellForRow:

2011-03-21 Thread William Weygandt
Hi, I know this has been discussed before, but I just don't get it: I need to set attributes for a TableColumn cell, based on its row, leaving the cells of other rows, unchanged.  I tried using the method dataCellForRow:.  I just can't seem to make this work.  Not sure I can sub