1.NavigationController切换UIViewController的两种方式
方法一右侧进入
1 SecondViewController* svc=[[SecondViewController alloc]init];
2 [self.navigationController pushViewController:fvc animated:YES];
返回到上一个
[self.navigationController popViewControllerAnimated:YES];
另一种方法从下面切入
SecondViewController*
svc=[[SecondViewController alloc]init];[self.navigationController
presentModalViewController:svc animated:YES];[svc
release]; |
返回到上一个UIViewController
[self.navigationController
dismissModalViewControllerAnimated:YES]; |
2.如果没有导航栏NavigationController的话 也是可以切换的
SecondViewController*
svc=[[SecondViewController alloc]init];[self presentModalViewController:svc
animated:YES];[svc
release]; |
返回到上一个UIViewController
[self dismissModalViewControllerAnimated:YES]; |
以上代码仅供参考,请大家多多指教
本文介绍了在 iOS 开发中使用 NavigationController 进行视图控制器切换的两种方法:一种是从右侧进入,使用 pushViewController 方法;另一种是从底部弹出,使用 presentModalViewController 方法。此外还介绍了没有 NavigationController 时的视图控制器切换方法。
165

被折叠的 条评论
为什么被折叠?



