一、模态视图
视图切换,纯代码的情况下,没有NavigationController,一般会用到presentViewController来切换视图并携带切换时的动画。
其中切换方法如下:
– presentViewController:animated:completion: 弹出,出现一个新视图 可以带动画效果,完成后可以做相应的执行函数经常为nil
– dismissViewControllerAnimated:completion:退出一个新视图 可以带动画效果,完成后可以做相应的执行函数经常为nil
切换动画在压入一个新视图和弹出顶层视图均可以使用。
利用模态视图进行多个页面跳转后,要返回最初始的页面则需要了解到控制器的两个属性presentedViewController和presentingViewController,他们分别是被present的控制器和正在presenting的控制器。比如说, 控制器A和B,[A presentViewController B animated:YES completion:nil]; 那么A相对于B就是presentingViewController,B相对于A是presentedViewController,即这个时候
B.presentingViewController = A;
A.presentedViewController = B;
利用模态跳转,从A present到B,再从B present到C,然后从C present到D,最后要从D返回到A,返回过程如下:
-(void)dismissModalStack {
UIViewController *vc = self.presentingViewController;
while (vc.presentingViewController) {
vc = vc.presentingViewController;
}
[vc dismissViewControllerAnimated:YES completion:NULL];
}
presentingViewController返回的是除model外最顶层的ViewController,而不是弹出model的。
二、导航控制器UINavigationController
UINaviGationController通常被我们称为导航栏,他是视图与视图之间联系沟通的桥梁,切换方法如下:
推出某个视图控制器
[self.navigationController pushViewController:viewController animated:YES];
UINavigationController是一个视图控制器的容器,他里面可能放了很多个控制器,所以返回的时候可以分为几种情况。
1、弹出当前显示的界面,返回到上个界面(注意,当当前界面是根界面时,这个方法是不起作用的)
[self.navigationController popViewControllerAnimated:YES];
2、返回到根视图控制器
[self.navigationController popToRootViewControllerAnimated:YES];
3、弹出到指定视图控制器
UIViewController *viewController=nil;
for (UIViewController *tempVc in self.navigationController.viewControllers) {
if ([tempVc isKindOfClass:[UIViewController class]]) {
viewController=tempVc;
}
}
[self.navigationController popToViewController:viewController animated:YES];
三、选项卡UITabBarController控制器
其实与其说UITabBarController的界面跳转,不如说是界面切换,因为UITabBarController的界面跳转其实就是UITabBarController的viewControllers数组中的几个界面切换。通过调用UITabBarController的addChildViewController方法添加子控制器:
UITabBarController *tabbarVC = [[ UITabBarController alloc ] init ];
OneViewController *oneVC = [[OneViewController ] init ];
oneVC.tabBarItem.title = @"one" ;
oneVC.tabBarItem.image = [ UIImage imageNamed : @"one.png" ];
TwoViewController *twoVC = [[TwoViewController ] init ];
twoVC.tabBarItem.title = @"two" ;
twoVC. tabBarItem.image = [UIImage imageNamed : @"two.png" ];
// 添加子控制器(这些子控制器会自动添加到UITabBarController的 viewControllers 数组中)
[tabbarVC addChildViewController :oneVC];
[tabbarVC addChildViewController :twoVC];
四、Storyboard的segues方式跳转
此方法仅适用于Storyboard中各个页面连线后的跳转,鼠标点击viewControlller,按住control键拖拽到另一个View页面,在弹出的segue页面中选择跳转模式即可,连线完之后选中连线,在Identifier填上对应的标示,然后再在需要跳转的地方实现如下代码即可:
[self performSegueWithIdentifier:@"test" sender:self];
如果连线的方式是push,则ViewController需要由UINavigationController来管理,返回方式则和UINavigationController一样
如果连线的方式是model,则ViewController不需要由UINavigationController来管理,返回方式和模态的返回方式一样
如果连线的方式是custom,则需要自定义segue,自定义segue在此不讨论。