UINavigationController NIB requires File's Owner to have a view? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T21:27:02Z http://stackoverflow.com/feeds/question/940952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/940952/uinavigationcontroller-nib-requires-files-owner-to-have-a-view 0 UINavigationController NIB requires File's Owner to have a view? Travis Dunn 2009-06-02T17:49:18Z 2009-06-30T20:26:49Z <p>I'm having a problem setting a View Controller nib's default View Outlet in Interface Builder. Here's my setup:</p> <p>I have a TabBar based application where I load a Navigation Controller as a modal view...</p> <pre><code>MyNavCtrlrSubClass *menu = [[MyNavCtrlrSubClass alloc]initWithNibName:@"MenuController" bundle:nil]; [tabBarController presentModalViewController:menu animated:anim]; </code></pre> <p>MenuController itself is structured as follows:</p> <pre> MenuController.xib File's Owner (MyNavCtrlrSubClass : UIViewController) Navigation Controller (UINavigationController) Navigation Bar (UINavigationBar) Root View Controller (Nib Name is set to load AnotherViewController.nib) Navigation Item -> (UINavigationItem) </pre> <p>This all works fine, except that when MyNavCtrlrSubClass is loaded, I get the following error:</p> <blockquote> <p><code>Loaded the "MenuController" nib but the view outlet was not set</code></p> </blockquote> <p>It's clear why this is happening - File's Owner doesn't have an outlet connection for its view. <strong>The question is what should I set as its view, and does something have to be set in the first place?</strong> The Navigation Bar is the only candidate in MenuController.xib, but doing this will just size the UINavigationBar itself to the fullscreen mode, so to speak.</p> <p>I'm obviously missing something in IB, but what? MyNavCtrlrSubClass.m has no code itself, except an IBOutlet for the UINavigationController. Am I making a mistake trying to set this up entirely in IB? The idea is to keep the modal Navigation Controller in one nib, and all the views it loads in separate nibs, but since MenuController is just a container for the navigation and contains no views itself, I'm obviously designing it wrong. :)</p> <p>If you're wondering why I'm not designing it some other way, it's because I'm trying to obey my (possibly mistaken) perception of how IB asks you to build an ideal hierarchy. </p> <p>Any help would be greatly appreciated. </p> http://stackoverflow.com/questions/940952/uinavigationcontroller-nib-requires-files-owner-to-have-a-view/941130#941130 0 Answer by ryanday for UINavigationController NIB requires File's Owner to have a view? ryanday 2009-06-02T18:28:11Z 2009-06-02T18:28:11Z <p>In IB, in the MenuController nib add a UIView and set that view as the outlet. You will need to set that view for a UIViewController. <a href="http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhone101/Articles/04%5FAddingNib.html#//apple%5Fref/doc/uid/TP40007514-CH6-SW8" rel="nofollow">Here</a> is a quick link to an Apple page showing a basic setup. Not sure if it will help you at your current stage though.</p> http://stackoverflow.com/questions/940952/uinavigationcontroller-nib-requires-files-owner-to-have-a-view/942903#942903 1 Answer by Jon Hess for UINavigationController NIB requires File's Owner to have a view? Jon Hess 2009-06-03T03:14:41Z 2009-06-03T03:14:41Z <p>I think you might not be understanding how the File's Owner is meant to be used in a NIB file. I've written up a response describing the file's owner here:</p> <p><a href="http://stackoverflow.com/questions/789251/is-there-an-easy-to-understand-guide-new-to-cocoa-xcode-etc-for-interface-bui/886472#886472">http://stackoverflow.com/questions/789251/is-there-an-easy-to-understand-guide-new-to-cocoa-xcode-etc-for-interface-bui/886472#886472</a></p> <p>When you invoke this line:</p> <pre><code>[[MyNavCtrlrSubClass alloc] initWithNibName:@"MenuController" bundle:nil] </code></pre> <p>You create an instance of MyNavCtrlrSubClass, and tell it to load @"MenuController". Then in the MenuController.xib file, there is a second unrelated UINavigationController with things inside of it. When MenuController.nib is loaded at runtime, that second navigation controller will be created.</p> <p>A second problem is that telling a UINavigationController to load a NIB file isn't really sensible because navigation controllers create and manage their own views. You really want to create the root view controller, and tell that view controller to load a NIB file.</p> <p>Try this:</p> <pre><code>MyRootViewController *rootController = [[[MyRootViewController alloc] initWithNibName:@"AnotherViewController" bundle:nil] autorelease]; MyNavCtrlrSubClass *menu = [[MyNavCtrlrSubClass alloc] initWithRootViewController:rootController]; </code></pre> <p>Where your XIB File looks like this:</p> <ul> <li>File's Owner (Class set to MyRootViewController, view outlet connected to subsequent UIView)</li> <li>UIView <ul> <li>Subview A</li> <li>Subview B</li> </ul></li> </ul> <p>After you're confortable with how all of this is working, you might also consider instantiating the navigation controller and root view controller in one XIB file like you were starting to do in the code you posted.</p>