如果我们有ABC三个controller
1、使用present从A到B、再present到C、如果我们想从C直接回到A的话、直接使用 self dismissViewControllerAnimated: 显然是不行的、页面会先到B、在dismiss才会回到A、
可以尝试使用[self.presentingViewController.presentingViewController dismissViewControllerAnimated:YES completion:^{
}];但是会产生一个卡顿现象。此时最好的方式是用push实现页面的跳转。
2.如果直接self.navigationController popViewControllerAnimated: 也是会和上一个相同的问题、因此此时可以使用下面的方法来实现
for (UIViewController *temp in self.navigationController.viewControllers) {
if ([temp isKindOfClass:[addressViewController class]]) {
//addressViewController位你想跳转的controller
[self.navigationController popToViewController:temp animated:YES];
}
}