码迷,mamicode.com
首页 > 编程语言 > 详细

UI: 操作导航控制器的视图控制器数组

时间:2014-10-11 14:07:15      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   sp   div   on   log   

- (void) goBack{
/* Get the current array of View Controllers */
NSArray *currentControllers = self.navigationController.viewControllers;
 /* Create a mutable array out of this array */
NSMutableArray *newControllers = [NSMutableArray arrayWithArray:currentControllers];
/* Remove the last object from the array */
[newControllers removeLastObject];
/* Assign this array to the Navigation Controller with animation */ 
[self.navigationController setViewControllers:newControllers animated:YES]; }

 

UI: 操作导航控制器的视图控制器数组

标签:style   blog   color   io   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/safiri/p/4018574.html

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