Skip to content

Instantly share code, notes, and snippets.

@MaximAlien
Created December 16, 2015 11:19
Show Gist options
  • Save MaximAlien/12487dcd8aba177704ec to your computer and use it in GitHub Desktop.
Save MaximAlien/12487dcd8aba177704ec to your computer and use it in GitHub Desktop.
[iOS] Modal UIViewController presentation (as UIModalPresentationFormSheet)
UIViewController *viewController = [[UIViewController alloc] init];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
navigationController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:navigationController animated:YES completion:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment