show/hide this revision's text 2 formatting

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

1)

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

show/hide this revision's text 1

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