• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 在切换期间关闭模态 UIViewController

[复制链接]
菜鸟教程小白 发表于 2022-12-13 03:42:38 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试将切换添加到我的应用程序。当我的应用被 Handoff 唤醒时,我需要关闭几个 ViewController 以返回位于我的 View 层次结构中的 MKMapView。

我的 View 层次结构如下:

+导航 Controller

+--- MyMapViewController(包含我想去的MKMapView,在NavController的顶部)

+--- MyTabbarViewController(它是一个有多个 View 的标签栏...)

+--- MyOverviewViewController(由显示在 MyTabbarViewController 中的 VC 推送到我的 NacController 的堆栈上)

 +--- MyDetailViewController (it's a modal view presented by MyOverviewController)

 +--- MyChartViewController (it's a modal view presented by MyDetailViewController)

当 App 接收到 UserActivity 时,显示的 View Controller 是“MyChartViewController”。

要显示用户事件的结果,我需要转到 MyMapViewController 以显示有关 MapView 的一些信息。

我的问题是在调用 [navController popToRootViewControllerAnimated:TRUE] 之前找到一种简单的方法来关闭“MyChartViewController”和“MyDetailsViewController”;

我试过 [navController.visibleViewController dismissViewControllerAnimated:FALSE completion:Nil];但它只关闭了 MyChartViewController,为什么?

navController.visibleViewController 是 MyDetailViewController。

我找到的唯一解决方案是调用: [MyChartViewControllerdismissViewControllerAnimated:FALSE 完成:无]; 和 [navController.visibleViewControllerdismissViewControllerAnimated:FALSE 完成:无];

我的 View 层次结构可能更复杂或不同,具体取决于触发 UserActivity 时用户在 App 中的位置。我期待找到一个可用于任何情况的简单解决方案。主要问题是解除模态视图 Controller 的堆栈。

我总是想回到这个位于 NavController 顶部的 MyMapViewController。

有什么想法吗?

谢谢!



Best Answer-推荐答案


请看下面我的简单解决方案。我编写了一个方法,可以关闭 NavigationController 的可见 View Controller 顶部显示的所有 ViewController。

当所有“模态” View Controller 都被解除时,我只需将 NavigationController 弹出到根目录。

它似乎适用于我必须在我的应用中管理的所有情况。

+(void) dismissModalAndPopToRootUINavigationController*) navController {

if (navController.visibleViewController.parentViewController == Nil) {
    // it's not a children of the NavController, so it's most probably a modal or several modals
    UIViewController* currentViewController = navController.visibleViewController;
    NSMutableArray* stackOfPresentedVC = [[NSMutableArray alloc] init];

    while (currentViewController.presentedViewController != Nil) {
        [stackOfPresentedVC addObject:currentViewController];
        currentViewController = currentViewController.presentedViewController;
    }
    [stackOfPresentedVC addObject:currentViewController];

    for (NSInteger i = (stackOfPresentedVC.count) - 1; i >= 0; i--) {
        currentViewController = stackOfPresentedVC[i];
        [currentViewController dismissViewControllerAnimated:FALSE completion:Nil];
    }
}

[navController popToRootViewControllerAnimated:TRUE];

}

关于ios - 在切换期间关闭模态 UIViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27178356/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap