我的应用程序中有10个viewControllers。我在单击每个viewController的NEXT按钮时使用NavigationController的pushViewController方法将所有这些viewControllers推送了。
我已经使用了代码作为;
[self.navigationController pushViewController:someView animated:YES];
现在我想从第10个child(viewController)跳回到rootViewController。
我怎样才能做到这一点 ?
请帮我..
谢谢。
最佳答案
尝试使用..
[self.navigationController popToRootViewControllerAnimated:YES];
关于ios - 如何关闭PushViewController?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11239010/