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
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
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{
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;
>