Embed UIViewController Programmatically?

前端 未结 2 1723
盖世英雄少女心
盖世英雄少女心 2020-12-28 14:12

I have a Storyboard setup with a UIViewController with an container view so that I can embed another UIViewController inside of it.

In a ce

2条回答
  •  孤独总比滥情好
    2020-12-28 14:25

    You can do this by programmatically, below is the method which will take a bool value to make decision which view controller need to be added in container view and then will instantiate an object and after that will add it to containerView

    - (void)addViewControllerToContainerView:(BOOL)addVC1
    {
    // Get storyboard
    UIStoryboard *storyBoard = [UIStoryboard storyboardWithName:@"" bundle:[NSBundle mainBundle]];
        UIViewController *viewController = nil;
        if (addVC1)
        {
    // get viewController with identifier 
            viewController = [storyBoard instantiateViewControllerWithIdentifier:@""];
        }
        else
        {
            viewController = [storyBoard instantiateViewControllerWithIdentifier:@""];
        }
    // lets add it to container view
        [viewController willMoveToParentViewController:self];
        [self.view addSubview:viewController.view];
        [self addChildViewController:viewController];
        [viewController didMoveToParentViewController:self];
    // keep reference of viewController which may be useful when you need to remove it from container view, lets consider you have a property name as containerViewController
        self.containerViewController = viewController;
    }
    

    When you need remove view controller from container view controller you can do this

       [self.containerViewController willMoveToParentViewController:nil];  // 1   
       self.containerViewController.view removeFromSuperView];
       [self.containerViewController removeFromParentViewController];//this line is updated as view is removed from parent view cotnroller istead of its viewcontroller is removed from parentViewController 
       self.containerViewController = nil
    

    Apple docs about container view controllers

提交回复
热议问题