Skip to content

Instantly share code, notes, and snippets.

@dbonates
Last active December 16, 2015 04:09
Show Gist options
  • Save dbonates/5374916 to your computer and use it in GitHub Desktop.
Save dbonates/5374916 to your computer and use it in GitHub Desktop.
Load ViewController from storyboard
UIStoryboard *sb = self.storyboard;
LoginViewController *loginWindow = (LoginViewController *)[sb instantiateViewControllerWithIdentifier:@"LoginWindow"];
[self presentViewController:loginWindow animated:YES completion:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment