Skip to content

Instantly share code, notes, and snippets.

@kirang89
Created May 30, 2014 07:45
Show Gist options
  • Save kirang89/f66a01a253322922b7d3 to your computer and use it in GitHub Desktop.
Save kirang89/f66a01a253322922b7d3 to your computer and use it in GitHub Desktop.
Doing a push segue using StoryBoard instance instead of the prepareForSegue method
UIStoryboard * myStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
DestinationViewController *dVC = [myStoryboard instantiateViewControllerWithIdentifier:@"storyboard_id_for_dVC"];
[self.navigationController pushViewController:urlVC animated:YES];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment