ios - 在切换期间关闭模态 UIViewController
<p><p>我正在尝试将切换添加到我的应用程序。当我的应用被 Handoff 唤醒时,我需要关闭几个 ViewController 以返回位于我的 View 层次结构中的 MKMapView。</p>
<p>我的 View 层次结构如下:</p>
<p>+导航 Controller </p>
<p>+--- MyMapViewController(包含我想去的MKMapView,在NavController的顶部)</p>
<p>+--- MyTabbarViewController(它是一个有多个 View 的标签栏...)</p>
<p>+--- MyOverviewViewController(由显示在 MyTabbarViewController 中的 VC 推送到我的 NacController 的堆栈上)</p>
<pre><code> +--- MyDetailViewController (it's a modal view presented by MyOverviewController)
+--- MyChartViewController (it's a modal view presented by MyDetailViewController)
</code></pre>
<p>当 App 接收到 UserActivity 时,显示的 ViewController 是“MyChartViewController”。</p>
<p>要显示用户事件的结果,我需要转到 MyMapViewController 以显示有关 MapView 的一些信息。</p>
<p>我的问题是在调用 之前找到一种简单的方法来关闭“MyChartViewController”和“MyDetailsViewController”;</p>
<p>我试过 ;但它只关闭了 MyChartViewController,为什么?</p>
<p>navController.visibleViewController 是 MyDetailViewController。</p>
<p>我找到的唯一解决方案是调用:
;
和
;</p>
<p>我的 View 层次结构可能更复杂或不同,具体取决于触发 UserActivity 时用户在 App 中的位置。我期待找到一个可用于任何情况的简单解决方案。主要问题是解除模态视图 Controller 的堆栈。</p>
<p>我总是想回到这个位于 NavController 顶部的 MyMapViewController。</p>
<p>有什么想法吗?</p>
<p>谢谢!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>请看下面我的简单解决方案。我编写了一个方法,可以关闭 NavigationController 的可见 ViewController 顶部显示的所有 ViewController。</p>
<p>当所有“模态” ViewController 都被解除时,我只需将 NavigationController 弹出到根目录。</p>
<p>它似乎适用于我必须在我的应用中管理的所有情况。</p>
<pre><code>+(void) dismissModalAndPopToRoot:(UINavigationController*) 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 = [ init];
while (currentViewController.presentedViewController != Nil) {
;
currentViewController = currentViewController.presentedViewController;
}
;
for (NSInteger i = (stackOfPresentedVC.count) - 1; i >= 0; i--) {
currentViewController = stackOfPresentedVC;
;
}
}
;
</code></pre>
<p>}</p></p>
<p style="font-size: 20px;">关于ios - 在切换期间关闭模态 UIViewController,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/27178356/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/27178356/
</a>
</p>
页:
[1]