iOS开发中
场景切换返回指定页面是很常见的需求
如果用导航栏切换场景,要回到指定页面非常简单,因为导航栏有popToViewController:animated:方法可以回到指定页面,因为导航是一个栈结构,前提是导航栏栈中要有目标控制器。
但是:这需要用户操作,实际项目中,导航栏都是自定义的,增加一些功能比如全局侧滑返回,当用户侧滑返回,返回的是上一级页面,这也很符合实际,但是有些页面要返回到指定页面,尤其在电商的app上是很常见的。只要有导航,这都是不是问题,
NSArray *arr = self.navigationController.viewControllers;
[self.navigationController setViewControllers:@[[arr firstObject], self] animated:YES];
拿到导航栏中所有控制器,重新设置值,爱怎么来就怎么来
但是如果没有导航栏,控制器VC是用present模态出来,只要在vc调用dismissViewControllerAnimated:completion:方法就可以让目标控制器消失,对于这种单一场景用这个就足够了,但是,如果场景比较复杂呢?
例如:A present B, B present C, C present D; 要求:D dismiss的时候要回到A。
如果这时在D中调用dismissViewControllerAnimated:completion:回到的是C,不能回到A;
因此需要理解3个事情:
1. 负责present的控制,负责 dismiss
2. A present B, B present C, C present D。当B dismiss 就可以回到A, C 、D也跟着销毁。
3. A present B, B.presentingViewController 正常是A(全屏模式), A.presentedViewController是B (全屏模式).
解决问题:D dismiss 回到A;
UIViewController *presentingVc = self.presentingViewController;
while(presentingVc.presentingViewController){
presentingVc = vc.presentingViewController;
// 如果 D dismiss 要求回到B
这里要增加判断 presentingVc的类型,
if ( [presentingVc isKindOfClass:[*********** class]])) {
break;
}
}
}
if (presentingVc) {
[presentingVc dismissViewControllerAnimated:YES completion:nil];
}
iOS 13, 请参考:
网友评论