当前位置:主页 > 移动开发 > iOS代码 >

ios开发navigationController pushViewController 方式多次跳转返回到最上层返回到指定的某一层的实现方法

时间:2021-01-23 10:13:51 | 栏目:iOS代码 | 点击:

返回指定的某个vc用下面(通过index定位)

[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:2] animated:YES];
或(通过class定位)
for (UIViewController *controller in self.navigationController.viewControllers) {
if ([controller isKindOfClass:[你要跳转到的Controller class]]) {
[self.navigationController popToViewController:controller animated:YES];
}
}

您可能感兴趣的文章:

相关文章