Loading NIB file using NSWindowController doesn't set window or top level objects - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:14:24Z http://stackoverflow.com/feeds/question/856808 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/856808/loading-nib-file-using-nswindowcontroller-doesnt-set-window-or-top-level-objects 1 Loading NIB file using NSWindowController doesn't set window or top level objects psychotik 2009-05-13T08:38:34Z 2009-05-14T18:38:29Z <p>I have a NIB file that I load using NSWindowController initWindowNibName. The NIB file contains one NSWindow. It's File's Owner is of class NSWindowController. I've connected the window outlet from File's Owner to the Window.</p> <p>When I load the NIB, [windowController window] is nil and so is the top level objects array. However, I can still call [windowController showWindow:nil] and successfully show the window.</p> <p>Something just doesn't seem right here. I've confirmed the connections and the File's Owner are OK. Infact, when I look at the _owner value of the windowController instance in the debugger I see it pointing to itself as I expect.</p> <p>Any suggestions on what might be going on?</p> <p>Thanks!</p> http://stackoverflow.com/questions/856808/loading-nib-file-using-nswindowcontroller-doesnt-set-window-or-top-level-objects/857090#857090 1 Answer by Abizern for Loading NIB file using NSWindowController doesn't set window or top level objects Abizern 2009-05-13T09:58:25Z 2009-05-13T13:05:09Z <p>Have you subclassed NSWindowController?</p> <p>When I do this, I use an NSWindowController called MyWindowController and call <code>initWithWindowNibName:</code> in the subclass's <code>init</code></p> <p>And then , set File's Owner to point to the MyWindowController class.</p> http://stackoverflow.com/questions/856808/loading-nib-file-using-nswindowcontroller-doesnt-set-window-or-top-level-objects/864996#864996 2 Answer by Rob Napier for Loading NIB file using NSWindowController doesn't set window or top level objects Rob Napier 2009-05-14T18:38:29Z 2009-05-14T18:38:29Z <p>When you say <code>[windowController window]</code> is nil, how are you determining this? The NIB isn't actually loaded until <code>-window</code> is called for the first time. So if you're looking in the debugger you'll see <code>_window</code> as nil until you call <code>showWindow:</code>. After that, <code>_window</code> should have a non-nil value.</p>