In the past, with a cell-based NSTableView, you could modify attributes of the cell in the tableView:willDisplayCell:forTableColumn:row method (for example, setting a custom NSAttributedString for one of the cells to display). Is there an equivalent method for view-based table view's?
Implementing tableView:willDisplayCell:forTableColumn:row doesn't get called in a view-based table view, so I'm not sure what to do.
I want to set a NSAttributedString using the setAttributedStringValue method of the default NSTextField instance that is included in a NSTableCellView instance created from within Xcode.
My efforts so far always get undone by the table view itself. Any ideas?