Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
What's OSC? You say "bound" – are you using bindings? With bindings, -objectValueForTableColumn will not be called – that's a data source method. – noa May 24 '12 at 18:34
OSC is Open Sound Control, a transmission protocol (opensoundcontrol.org/introduction-osc). I wish to record OSC messages and display them in an NSTableView. Sorry for my bad explanation, I'm using data source (my "connection" object that receives messages). What I meant is that my NSTableView is not created programmatically. Thanks for your answer. – L'ange Carasuelo May 25 '12 at 15:41
I see. How about -numberOfRowsInTableView – is that being called? – noa May 25 '12 at 15:44
Yes but only once, when I create the "connection" instance, it doesn't have any messages yet and counts 0. – L'ange Carasuelo May 25 '12 at 16:14
Try calling -reloadData on the table view after you insert the content. – noa May 26 '12 at 14:43
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.