iOS视图跳转的总结

1、self.view addSubView:viewself.window addSubView,需要注意的是,这个方法只是把页面加在当前页面。

 UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow];
            [keyWindow addSubview:historynav.view];
            dispatch_async(dispatch_get_main_queue(), ^ {
                
                UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow];
                [keyWindow addSubview:historynav.view];

            });

此时在用self.navigationControler.pushViewControllerpopViewController 是不行的。要想使用pushViewControllerpopViewController进行视图间的切换,就必须要求当前视图是个NavigationController

2、使用self.navigationControler pushViewControllerpopViewController来进行视图切换的,pushViewController是进入到下一个视图,popViewController是返回到上一视图。

3、没有NavigationController导航栏的话,使用self.presentViewControllerself.dismissModalViewController实现控制器之间的切换,不能用作视图之间的切换。
4、要想使用pushViewControllerpopViewController来进行视图切换,首先要确保根视图是NavigationController,不然是不可以用的。这里提供一个简单的方法让该视图或者根视图是NavigationController。自己定义个子类继承UINavigationController,然后将要展现的视图包装到这个子类中,这样就可以使这个视图是个NavigationController了。提供的这个方法有很好的好处,就是可以统一的控制各个视图的屏幕旋转。

注意:
1、
在变成过程中,经常遇到两个视图控制器之间的切换,导航控制器即UINaVigation是最常用的一种,有时为了某些效果又需要进行模态切换,即present。
我们的布局经常是在window上加一个nav,然后以viewControl作为nav的根视图进行导航。如果在导航之间有了一个present之后,你会发现当前页面的navigationController是空的,也就是说导航控制器不管用了
下面就给大家介绍两种比较有效的方法:
第一:在进行present之前,重新生成一个导航控制器,然后将下一个视图作为新生成的导航控制器的跟视图,将导航控制器present就行了,

ThirdViewController *thirdCtr=[[ThirdViewController alloc]init];  
  
UINavigationController *nav=[[UINavigationController alloc]initWithRootViewController:thirdCtr];  
  
[self presentViewController:nav animated:YES completion:nil];  

这样的话问题基本解决了,但就是没有回到最初的跟视图,只能在当前的导航控制器之间切换。

第二种方法就比较好了,获取当前的window实例,在得到widow的跟视图,即为导航器,然后根据导航器的索引就可以找到当前的视图了

FourthViewController *fourth=[[FourthViewController alloc]init];  
  UIWindow *window=[[UIApplication sharedApplication]keyWindow];  
  UINavigationController *nav0=(UINavigationController *)window.rootViewController;  
  UIViewController *viewController=[nav0.viewControllers objectAtIndex:1];  
  [viewController.navigationController pushViewController:fourth animated:YES];  

2、push present的区别
present一般用于临时性弹出一个页面;而push一般用于逻辑上的层次关系的应用,能够适应更加复杂一点的场景,毕竟导航控制器提供了多页面管理方法。

3、遇到的问题
Warning: Attempt to present * on * which is already presenting (null)

http://stackoverflow.com/questions/32696615/warning-attempt-to-present-on-which-is-already-presenting-null

你可能感兴趣的:(iOS视图跳转的总结)