iPhone: How to load a View using a nib file created with Interface Builder - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T16:29:15Zhttp://stackoverflow.com/feeds/question/863321http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/863321/iphone-how-to-load-a-view-using-a-nib-file-created-with-interface-builder2iPhone: How to load a View using a nib file created with Interface BuilderGonso2009-05-14T13:23:12Z2009-10-23T13:28:07Z
<p>Hi</p>
<p>I'm trying to do something a bit elaborate but that should be possible, so here is a challenge for all you experts out there (this forum is pack of the lot of you :) ).</p>
<p>Im creating a Questionnaire "component" I want to load on a NavigationContoller my QuestionManagerViewController. This is an "empty" view controller that can load different views depending on the question that needs to be answered.</p>
<p>The way I'm doing this is:
1) Create the Question1View object a as UIView subclass, defining some IBOutlets.
2) Create (using Interface Builder) the Question1View.xib (HERE IS WHERE MY PROBLEM PROBABLY ARE). I set the both the ViewController and the View to be of class Question1View.
3) I link the outlets with the view's component (using IB).
4) I override the inithWithNib of my QuestionManagerViewController to look like this:</p>
<pre><code>- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:@"Question1View" bundle:nibBundleOrNil]) {
// Custom initialization
}
return self;
}
</code></pre>
<p>When I run the code Im getting this error:</p>
<pre><code>2009-05-14 15:05:37.152 iMobiDines[17148:20b] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UIViewController _loadViewFromNibNamed:bundle:] loaded the "Question1View" nib but the view outlet was not set.'
</code></pre>
<p>Im sure there is a way to load the view using the nib file, without needing to create a viewController class.</p>
<p>Any ideas?</p>
<p>Thanks!</p>
<p>Gonso</p>
http://stackoverflow.com/questions/863321/iphone-how-to-load-a-view-using-a-nib-file-created-with-interface-builder/863399#8633996Answer by Marc W for iPhone: How to load a View using a nib file created with Interface BuilderMarc W2009-05-14T13:42:29Z2009-05-14T13:42:29Z<p>You should not be setting the class of your view controller to be a subclass of <code>UIView</code> in Interface Builder. That is most definitely at least part of your problem. Leave that as either <code>UIViewController</code>, some subclass of it, or some other custom class you have.</p>
<p>As for loading only a view from a xib, I was under the assumption that you <em>had</em> to have some sort of view controller (even if it doesn't extend <code>UIViewController</code>, which may be too heavyweight for your needs) set as the File's Owner in Interface Builder if you want to use it to define your interface. I did a little research to confirm this as well. This is because otherwise there would be no way to access any of the interface elements in the <code>UIView</code>, nor would there be a way to have your own methods in code be triggered by events.</p>
<p>If you use a <code>UIViewController</code> as your File's Owner for your views, you can just use <code>initWithNibName:bundle:</code> to load it and get the view controller object back. In IB, make sure you set the <code>view</code> outlet to the view with your interface in the xib. If you use some other type of object as your File's Owner, you'll need to use <code>NSBundle</code>'s <code>loadNibNamed:owner:options:</code> method to load the nib, passing an instance of File's Owner to the method. All its properties will be set properly according to the outlets you define in IB.</p>
http://stackoverflow.com/questions/863321/iphone-how-to-load-a-view-using-a-nib-file-created-with-interface-builder/866261#8662612Answer by Gonso for iPhone: How to load a View using a nib file created with Interface BuilderGonso2009-05-14T22:48:00Z2009-10-23T13:28:07Z<p>Thank you all.
I did found a way to do what I wanted.</p>
<ol>
<li>Create you UIView with the IBOutlets you need.</li>
<li>Create the xib in IB, design it to you liking and link it like this: The File's Owner is of class UIViewController (No custom subclass, but the "real" one). The File Owner's view is connected to the main view and its class is declared as the one from step 1).</li>
<li>Connect your controls with the IBOutltes.</li>
<li><p>The DynamicViewController can run its logic to decide what view/xib to load. Once its made the decission, in the loadView method put something like this:</p>
<pre><code>NSArray* nibViews = [[NSBundle mainBundle] loadNibNamed:@"QPickOneView" owner:self options:nil];
QPickOneView* myView = [ nibViews objectAtIndex: 1];
myView.question = question;
</code></pre></li>
</ol>
<p>That's it!</p>
<p>The main bundle's loadNibNamed method will take care of initializing the view and create the connections.</p>
<p>Now the ViewController can display a view or another depending on the data in memory, and the "parent" screen doesn't need to be bother with this logic.</p>
<p>Gonso</p>
http://stackoverflow.com/questions/863321/iphone-how-to-load-a-view-using-a-nib-file-created-with-interface-builder/1067356#10673561Answer by Barney Mattox for iPhone: How to load a View using a nib file created with Interface BuilderBarney Mattox2009-07-01T05:07:14Z2009-07-01T05:07:14Z<p>The previous answer does not take into account a change in the NIB (XIB) structure that occurred between 2.0 and 2.1 of the iPhone SDK. User contents now start at index 0 instead of 1.</p>
<p>You can use the 2.1 macro which is valid for all version 2.1 and above (that's two underscores before IPHONE:</p>
<pre><code> // Cited from previous example
NSArray* nibViews = [[NSBundle mainBundle] loadNibNamed:@"QPickOneView" owner:self options:nil];
int startIndex;
#ifdef __IPHONE_2_1
startIndex = 0;
#else
startIndex = 1;
#endif
QPickOneView* myView = [ nibViews objectAtIndex: startIndex];
myView.question = question;
</code></pre>
<p>We use a technique similar to this for most of our applications.</p>
<p>Barney</p>