所以我正在使用 Storyboard 创建一个基于 ipad 食谱的应用程序。只是为了让您了解我的程序的结构,这里是 View Controller 的流程:
ViewController --Modally--> PreviewViewController --Modally--> RecipeViewController --Popup--> IngredientsViewController
所有这些都在 Storyboard中完成。我创建了 IngredientsViewController
并将其链接到 RecipeViewController
以显示为弹出窗口,效果很好。但是我希望能够以编程方式关闭 IngredientsViewController
(因为我已经实现了语音命令功能)。问题是我似乎无法访问 IngredientsViewController
来关闭它。 (抱歉,我还不能发布任何图片)。
我正在使用以下代码以编程方式呈现 IngredientsViewController
(来自 RecipeViewController
):
[self performSegueWithIdentifier"ingr" sender:nil];
这可以很好地显示弹出窗口,但我无法关闭它。我试图通过 View Controller 的层次结构访问它,但似乎找不到它,我认为它会位于堆栈的顶部,但显然不是?我试过这样的事情:
[self.presentedViewController dismissViewControllerAnimated:YES completion:nil];
这又是从 RecipeViewController
中调用的。但这只是忽略了 RecipeViewController
而不是弹出窗口呈现的 IngredientsViewController
。
需要说明的是IngredientsViewController
不是UIPopoverController
,它是在storyboard中创建的普通viewController
,它的segue风格是popup链接到 RecipeViewController
中的按钮。
任何帮助将不胜感激。谢谢!
UIPopoverController *popOver = (UIPopoverController *)self.presentedViewController;
[popOver dismissPopoverAnimated:YES];
如果您的目标 View Controller 是 UIPopoverController
关于ios - 关闭通过 Popup 呈现的 ViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15001178/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |