Skip to content

Instantly share code, notes, and snippets.

@setoh2000
Created May 8, 2012 17:10
Show Gist options
  • Save setoh2000/2637433 to your computer and use it in GitHub Desktop.
Save setoh2000/2637433 to your computer and use it in GitHub Desktop.
現在表示しているviewControllerを別のviewControllerに差し替える
// 現在のviewControllerを閉じてanotherViewControllerに差し替える
NSMutableArray *viewControllers = [NSMutableArray arrayWithArray:self.navigationController.viewControllers];
[viewControllers removeLastObject];
[viewControllers addObject:anotherViewController];
[self.navigationController setViewControllers:viewControllers animated:YES];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment