Created
July 22, 2014 11:59
-
-
Save tlarevo/0ef584b3c486c87e5ade to your computer and use it in GitHub Desktop.
iOS Navigation without NavigationView
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
NSString * storyboardName = @"Main"; | |
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:storyboardName bundle: nil]; | |
UIViewController * myViewController = [storyboard instantiateViewControllerWithIdentifier:@"MY_VIEW"]; | |
[self presentViewController:myViewController animated:YES completion:nil]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment