产品需求:
假设有 A、B、C、D、E、F个控制器 ( -> 表示 push)
示例: A -> B -> C -> D -> E
实现: A -> B -> C -> F -> E
说明: 需要在E控制器返回时,直接返回到一个新的控制器F,而不是 D
Implementation Code
//修改栈中的Controller
//将栈中的ExchangeEditController删除,插入RecordViewController页面
- (void)changeNavigationControllers
{
if (self.navigationController.viewControllers.count >= 3) {
NSMutableArray *array = self.navigationController.viewControllers.mutableCopy;
if ([array[array.count - 2] isKindOfClass:[ExchangeEditController class]]) {
//移除操作
[array removeObjectAtIndex:array.count - 2];
RecordViewController *recordVC = [RecordViewController new];
//新建并插入操作
[array insertObject:recordVC atIndex:array.count - 1];
//重新设定栈中的控制器
[self.navigationController setViewControllers:array animated:NO];
}
}
}