Dismiss two modal view controllers

不羁的心 提交于 2019-11-28 03:19:51

问题


I have a navigation controller which present one modal viewController. From inside this modal viewController I present another modal viewController. All I want is to get back from the last modal viewController to the navigationController (the root viewController).Something similar with popToRootViewController, but adapted for modalViewControllers;

NavigationController -> present Modal ViewController A -> present Modal ViewController B

From modal ViewCOntroller B I want to return to navigationCOntroller.

Is this possible?

Appreciate, Alex.


回答1:


In iOS 5 you need to do

[self.presentingViewController.presentingViewController dismissModalViewControllerAnimated:YES]

Edit: As of iOS 6 dismissModalViewControllerAnimated: is deprecated.

You need to call

[self.presentingViewController.presentingViewController dismissViewControllerAnimated:YES completion:^{ // Do something on completion}]




回答2:


Problem solved :)

I tried

[self.parentViewController.parentViewController dismissModalViewControllerAnimated:YES];    

and works.

Thanks.



来源:https://stackoverflow.com/questions/4955638/dismiss-two-modal-view-controllers

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!