gpt4 book ai didi

ios - 关闭通过 Popup 显示的 ViewController

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:44:54 24 4
gpt4 key购买 nike

所以我正在使用 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com