码迷,mamicode.com
首页 > 移动开发 > 详细

iOS界面之间的跳转方式

时间:2017-10-25 16:37:40      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:改变   next   tor   present   索引   响应   smis   roo   方式   

iOS界面之间的跳转方式基本有3种。
1、改变window的根视图

  [self.window setRootViewController:VC];

2、模态弹出

     [self  presentViewController:nextVC  animated:YES completion:nil];//从当前界面到nextVC
     [self dismissViewControllerAnimated:YES completion:nil];//从nextVC界面回去

3 用 UINavigationController push 进来和pop回去

     [self.navigationController pushViewController:nextVC animated:YES];//从当前界面到nextVC这个界面
     [self.navigationController popViewControllerAnimated:YES];//nextVC这个界面回到上一界面
     [self.navigationController popToRootViewControllerAnimated:YES];//回到根视图界面

     //self.navigationController.viewControllers 是一个数组里面存放所有之前push过来的界面,如果想要跳回到指定界面 只需要根据索引值取出响应的界面pop回去


     MainViewController *MainVC =self.navigationController.viewControllers[1];
     [self.navigationController popToViewController:MainVC animated:YES];

 

iOS界面之间的跳转方式

标签:改变   next   tor   present   索引   响应   smis   roo   方式   

原文地址:http://www.cnblogs.com/Free-Thinker/p/7729321.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!