Skip to content

Instantly share code, notes, and snippets.

@HiromichiYamada
Forked from tomohisa/gist:2897676
Created April 10, 2014 10:17
Show Gist options
  • Save HiromichiYamada/10365104 to your computer and use it in GitHub Desktop.
Save HiromichiYamada/10365104 to your computer and use it in GitHub Desktop.
// add child view
UIViewController* controller = [self.storyboard instantiateViewControllerWithIdentifier:@"test"];
[self addChildViewController:controller];
controller.view.frame = CGRectMake(0, 44, 320, 320);
[self.view addSubview:controller.view];
[controller didMoveToParentViewController:self];
// remove child view
UIViewController *vc = [self.childViewControllers lastObject];
[vc.view removeFromSuperview];
[vc removeFromParentViewController];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment