Created
May 8, 2012 17:10
-
-
Save setoh2000/2637433 to your computer and use it in GitHub Desktop.
現在表示しているviewControllerを別のviewControllerに差し替える
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 現在の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