vote up 2 vote down star
2

Hi

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 :) ).

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.

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:

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    if (self = [super initWithNibName:@"Question1View" bundle:nibBundleOrNil]) {
        // Custom initialization
    }
    return self;
}

When I run the code Im getting this error:

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.'

Im sure there is a way to load the view using the nib file, without needing to create a viewController class.

Any ideas?

Thanks!

Gonso

flag

3 Answers

vote up 6 vote down

You should not be setting the class of your view controller to be a subclass of UIView in Interface Builder. That is most definitely at least part of your problem. Leave that as either UIViewController, some subclass of it, or some other custom class you have.

As for loading only a view from a xib, I was under the assumption that you had to have some sort of view controller (even if it doesn't extend UIViewController, 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 UIView, nor would there be a way to have your own methods in code be triggered by events.

If you use a UIViewController as your File's Owner for your views, you can just use initWithNibName:bundle: to load it and get the view controller object back. In IB, make sure you set the view 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 NSBundle's loadNibNamed:owner:options: 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.

link|flag
One point, I believe that this view controller should be based in some manner on UIViewController to take advantage of all its functionality. Also, you don't have to make the File's Owner to a view controller. One can simply load the nib and grab the view out of that nib -- I don't have the code here but I know you can do it. – Lyndsey Ferguson May 14 at 14:02
That's what I was trying to research. Everything I found indicated that there needs to be some sort of File's Owner linked to the view in order to access it. You could of course write something more hackish that iterated over the top-level objects in the nib and extract the view that way, but I was trying to stay away from suggesting that. – Marc W May 14 at 14:18
I'm reading the Apress book, "Beginning iPhone Development: Exploring the iPhone SDK" and they discussed this method at chapter 9: Navigation Controllers and Table Views. It didn't seem too complicated. – Lyndsey Ferguson May 14 at 14:29
I'd be curious to see how they say it's done. I don't have a copy of that book at the moment. – Marc W May 14 at 14:43
You could always ping Jeff LaMarche or Dave Mark via Twitter. Can't remember the latter's handle offhand, but Jeff is @jeff_lamarche. – Jim Dovey May 14 at 17:18
vote up 2 vote down

Thank you all. I did found a way to do what I wanted.

  1. Create you UIView with the IBOutlets you need.
  2. 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).
  3. Connect your controls with the IBOutltes.
  4. 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:

    NSArray* nibViews =  [[NSBundle mainBundle] loadNibNamed:@"QPickOneView" owner:self options:nil];
    QPickOneView* myView = [ nibViews objectAtIndex: 1];
    myView.question = question;
    

That's it!

The main bundle's loadNibNamed method will take care of initializing the view and create the connections.

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.

Gonso

link|flag
1  
I have a very similar problem - I simply want to load a UIView from an xib file. These steps don't work for me - the app crashes with "bad access" soon after adding the loaded view as a subview. – Justicle May 27 at 0:18
For iPhone 3.0, use objectAtIndex:0 to get the first element. This crashes for me exactly as described by Justicle. Any idea why? – brainfsck Aug 11 at 21:19
vote up 1 vote down

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.

You can use the 2.1 macro which is valid for all version 2.1 and above (that's two underscores before IPHONE:

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

We use a technique similar to this for most of our applications.

Barney

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.