UINavigationController自由跳转

在iOS开发中,UINavigationController是很常用的Controller,对它的一般操作就像操作一个栈,push和pop。但也经常会遇到pop和push无法优雅的完成的操作,比如退回到中间的某个VC上,或者在第一个VC之前添加一个VC等,更甚者要重新构造整个VC的顺序,这时候setViewControllers方法就排上用场了,它使对VC栈的操作不再局限于push和pop,而是构造整个VC栈并应用到当前的UINavigationController中,这个方法支持iOS3.0+,放心使用。

例如:当前我处于视图控制器A ,我想打开一个视图控制器C,但出于某个目的(预加载)打开控制器B,但又想保留之前的控制器栈

NSMutableArray * viewControllers = [self.navigationController.viewControllers mutableCopy];//获取到当前导航控制器栈中所有vc

UIViewController *vcB=[UIViewController new];
UIViewController *vcC=[UIViewController new];
[viewControllers addObjectsFromArray:@[vcB,vcC]];

[self.navigationController setViewControllers:viewControllers animated:YES];
// [viewControllers relase] // if non-arc
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

执行后,控制器跳转至C,在C中执行

[self.navigationController popViewControllerAnimated:NO];
  • 1

你会发现是回到B,而不是A

说明

下面这段摘自Api文档

You can use this method to update or replace the current view controller stack without pushing or popping each controller explicitly. In addition, this method lets you update the set of controllers without animating the changes, which might be appropriate at launch time when you want to return the navigation controller to a previous state.

If animations are enabled, this method decides which type of transition to perform based on whether the last item in the items array is already in the navigation stack. 
.If the view controller is currently in the stack, but is not the topmost item, this method uses a pop transition; 
.if it is the topmost item, no transition is performed. 
.If the view controller is not on the stack, this method uses a push transition. 

Only one transition is performed, but when that transition finishes, the entire contents of the stack are replaced with the new view controllers. For example, if controllers A, B, and C are on the stack and you set controllers D, A, and B, this method uses a pop transition and the resulting stack contains the controllers D, A, and B. <br /> Have fun! <br /> <br />

猜你喜欢

转载自blog.csdn.net/wujakf/article/details/79131081