Created
December 16, 2015 11:19
-
-
Save MaximAlien/12487dcd8aba177704ec to your computer and use it in GitHub Desktop.
[iOS] Modal UIViewController presentation (as UIModalPresentationFormSheet)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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