I'm working on an OSC document based app. I have a "static" NSTableView in a xib file associated to my document. The table view is bound with a NSObject class that is initialized when I create an OSC connection (so there's no "didLoadNib" method inside). Everything seems to work right : mu connection is OK, the NSTableView displays well, but the class doesn't pass by the
- (id) tableView:(NSTableView*)tableView objectValueForTableColumn:(NSTableColumn*)tableColumn row:(NSInteger)row
and the NSTableView remains empty, even when I change my instantiated class values, and the NSMutableArray bound with the NSTableView It seems to work only when I make a [[myTableView alloc] init] in my
- (void)windowControllerDidLoadNib:(NSWindowController *)aController
(but without displaying anything, it only see that I have the right number of rows, it doesn't pass by the previous method) Hope that is a bit clear... Does anyone has an idea. Thanks a lot in advance.
Ben
-objectValueForTableColumnwill not be called – that's a data source method. – noa May 24 '12 at 18:34-numberOfRowsInTableView– is that being called? – noa May 25 '12 at 15:44-reloadDataon the table view after you insert the content. – noa May 26 '12 at 14:43