I've got a View-based NSTableView which is configured in IB to be View based. Its column identifier is set, too. As are its dataSource and delegate set, to the same object, which claims to conform to both in the public header. I've verified these are set after the tableView awakes from its nib.
As per the docs, I've implemented -numberOfSectionsInTableView: and it gets called and returns a non-zero number.
However, -tableView:viewForTableColumn:row:, much to my chagrin, does not, and I can't figure out why not.
Does anyone know why this might happen? I'm running on Mountain Lion and my deployment target is also set to be Mountain Lion.
-awakeFromNib. Non-nil and pointing to the correct object. – jbrennan Oct 26 '12 at 17:13