Re: NSTableView and loadNibNamed

2008-05-04 Thread Joseph Ayers
That was it. Many thanks, Joseph Hamish Allan wrote: On Sun, May 4, 2008 at 4:14 PM, Joseph Ayers <[EMAIL PROTECTED]> wrote: Indeed the NIB tableWindow has file's Owner set to tableController and there is a connection made to dataTable from a TableController object. Do you mean y

Re: NSTableView and loadNibNamed

2008-05-04 Thread Hamish Allan
On Sun, May 4, 2008 at 4:14 PM, Joseph Ayers <[EMAIL PROTECTED]> wrote: > Indeed the NIB tableWindow has file's Owner set to tableController and > there is a connection made to dataTable > from a TableController object. Do you mean you have another TableController instantiated in your nib? In

Re: NSTableView and loadNibNamed

2008-05-04 Thread Joseph Ayers
The method that loads the NIB is: -(void)loadTableController{ if (tableController == NULL) { tableController = [[TableController alloc] init]; if (![NSBundle loadNibNamed:@"tableWindow" owner:tableController]) { NSLog(@"Error loading TableController");} else{

Re: NSTableView and loadNibNamed

2008-05-04 Thread Keary Suska
on 5/4/08 9:14 AM, [EMAIL PROTECTED] purportedly said: > I have a NSTableView as an instance of a NSWindowController declared as: > > @interface TableController : NSWindowController { > IBOutlet NSWindow* tableWindow; > IBOutlet NSTableView*dataTable; >