Re: can't get sheet to appear

2009-11-10 Thread Kyle Sluder
On Nov 10, 2009, at 11:45 AM, SRD > wrote: - (id) init { self = [super initWithWindowNibName:@"Configure"]; ... } I'm assuming this is a subclass of NSWindowController. NSWindowController lazily loads your nib, so your configSheet outlet is always nil. This is also why awakeFromNi

can't get sheet to appear

2009-11-10 Thread SRD
Having a problem understanding what I'm doing wrong here. I am calling a controller from within another controller and when I call 'configureSheet', I expect a sheet to drop down on the main window. if (!configController) { configController = [[ConfigController alloc] init]; }