I've two TableViews (one SourceList and one Normal TableView). I'm not using ArrayControllers, just using:
- (id)tableView:(NSTableView *)aTableView
objectValueForTableColumn:(NSTableColumn *)aTableColumn
row:(NSInteger)rowIndex;
- (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView;
this to display the Row Contents. But the Problem is that I have not only one TableView - I've more than one. So I have added another NSObject with this Codes inside. But the Content wont show.
Must I use ArrayControllers? Or can I show the Content of the Second TableView in another way?