iOS Container Views storyboard only?

134 Views Asked by At

I am making a storyboard free app, and I would like to know if i can implement a container view system without using a storyboard. Thank you.

1

There are 1 best solutions below

0
On

If you want to do it programatically here is how you embed the view controller with Storyboards:

UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil];
    _embeddedController = (EmbeddedViewController *)[mainStoryboard instantiateViewControllerWithIdentifier:@"embeddedController"];


    [self addChildViewController:_openGLController];
    [self.view addSubview:_embeddedController.view];
    [self didMoveToParentViewController:self];