Skip to content

Instantly share code, notes, and snippets.

@ChrisRisner
Created October 9, 2012 04:04
Show Gist options
  • Save ChrisRisner/3856526 to your computer and use it in GitHub Desktop.
Save ChrisRisner/3856526 to your computer and use it in GitHub Desktop.
ios Day 5
- (IBAction)tappedShowNewView:(id)sender {
SecondViewController *secondViewController =
[self.storyboard instantiateViewControllerWithIdentifier:@"secondViewController"];
[self presentModalViewController:secondViewController animated:YES];
}
- (IBAction)tappedNavButton:(id)sender {
SecondViewController *secondViewController =
[self.storyboard instantiateViewControllerWithIdentifier:@"secondViewController"];
[self.navigationController pushViewController:secondViewController animated:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment