我是iPhone开发中的新手,我尝试使用xcode 4.2创建单视图应用程序,我想从一个视图移动到另一个视图。有没有办法在不使用情节提要的情况下将视图从一个视图推向另一个视图?

最佳答案

使用UINavigationController

MySub1ViewController *mySub1ViewController = [[MySub1ViewController alloc] init];

//Push it to the top of the navigation controllers stack
[[self navigationController] pushViewController:mySub1ViewController animated:YES];

//Pop viewController from the view stack
[[self navigationController] popViewControllerAnimated:(BOOL)YES];


有关更多信息,请检查tutorial

10-08 12:10