Skip to content

Instantly share code, notes, and snippets.

@tlarevo
Created July 22, 2014 11:59
Show Gist options
  • Save tlarevo/0ef584b3c486c87e5ade to your computer and use it in GitHub Desktop.
Save tlarevo/0ef584b3c486c87e5ade to your computer and use it in GitHub Desktop.
iOS Navigation without NavigationView
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