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

【IOS】导航--跳转到任意级视图

时间:2014-09-05 22:21:32      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   div   sp   log   

 1 //方法一:
 2 for(UIViewController *controller in self.navigationController.viewControllers){
 3 
 4            if([controller isKindOfClass:[OverWorkRecevice class]]){
 5 
 6                 OverWorkRecevice *owr =(OverWorkRecevice *)controller;
 7 
 8                 [self.navigationController  popToViewController:owr animated:YES];
 9 
10            }
11 
12 }
13 //方法二: 
14 [self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:1] animated:YES];

 

【IOS】导航--跳转到任意级视图

标签:style   blog   color   os   io   for   div   sp   log   

原文地址:http://www.cnblogs.com/DannyApple/p/3958720.html

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