Hi,
I am implementing NSTableCellView class i.e for view based NSTableView. I added NSTableCellView header and implementation files.
I added viewForTableColumn method in NSTableViewDelegate protocol and included its implementation in NSTableView.m.
However on replacing objectValueForTableColumn method with viewForTableColumn in my custom class which is both source and delegate, viewForTableColumn method doesnt gets called to display data.
Other delegate methods for eg shouldSelectRow gets called, but viewForTableColumn delegate method does not get called when displaying the table.