I am receiveing this error message when launching a IBAction from an NSView.
XXXX is AccountTableCellViewController I did put it with an abstract name in case it can help other prople.
This is the structure of the components:
I have an app where I load this view:
Using this NSView as cell
The TableView has been binded like this:
@property (nonatomic,retain) IBOutlet NSTableView *tableView;
I display the contents as follows (I have some doubts on not linking the controller anywhere)
- (NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row
{
Account *account = (Account *)[self.dataSource objectAtIndex:row];
AccountTableCellViewController *controller = [[AccountTableCellViewController alloc] initWithNibName:@"AccountTableCellViewController" bundle:nil ];
controller.account = account;
return [controller view] ;
}
Any idea?