控制器之间的跳转,多层的跳转

UIViewController *target = nil;
for (UIViewController * controller in self.navigationController.viewControllers) { //遍历
if ([controller isKindOfClass:[SecretGardenController class]]) { //这里判断是否为你想要跳转的页面
target = controller;
}
}
if (target) {
[self.navigationController popToViewController:target animated:YES]; //跳转
}

原文地址:https://www.cnblogs.com/wuxiufang/p/4011137.html