我目前正在开发一个应用程序,它以模态方式显示屏幕和另一个自定义进度指示器.是否可以无缝地返回根视图控制器?
首页 - > screen1-> screen2(自定义progressIndicator)
我想解雇自定义progressIndicator(以及模态显示的屏幕)并一次性返回我的家(根)View Controller.
self.navigationController?.popToRootViewControllerAnimated(true)
感谢您的帮助!
您需要关闭显示的模型,然后您可以弹出所有推送的视图控制器.如所呈现的模型不会在导航的堆栈中.
self.dismissViewControllerAnimated(true, completion: {});
然后你可以弹出到基本视图控制器.
self.navigationController.popViewControllerAnimated(true);
如果使用presentViewController
,可以使用
[self.view.window.rootViewController dismissViewControllerAnimated:YES completion:nil];
回到root视图.它适用于IOS9.