菜鸟教程小白 发表于 2022-12-13 16:05:02

ios - 如何在 Storyboard 中关闭 NavigationController?


                                            <p><p>我到处找这个问题,所以作为最后的手段,我想我应该问这个问题。</p>

<p>我在 XCode 中使用 Storyboard,并将导航 Controller 作为我的初始 View 。这个导航 Controller 的 Root View 是一个表格 View 。在这个表格 View 中,我在导航栏中有一个按钮,它通过模式 segue 将 View 水平翻转到导航 Controller 。这个 Controller 的 Root View 是我的 mapView 。现在,当我想使用 <code></code> 关闭此 mapView 时,它不起作用。如果我取出导航 Controller ,它会这样做。所以,我猜dismissViewController 被传递给导航 Controller ,而不做任何事情。我知道我可以为导航 Controller 实现一个类来处理调用并将其传递,但​​除非绝对必要,否则我不想这样做。</p>

<p>所以要解决这个问题:</p>

<ol>
<li><p>我需要一种使用水平翻转动画在表格 View 和 mapView 之间切换的方法,反之亦然。</p></li>
<li><p>我需要在两个 View 中都有一个导航 Controller ,我可以是同一个,也可以是不同的。我似乎找不到使用相同方法的方法,因为任何转换都是不进行水平翻转转换的插入。</p></li>
</ol>

<p>提前感谢您的帮助!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>当你调用 <code></code> 时,<code>self</code> 是谁?</p>

<p>此消息的接收者必须是呈现您要关闭的模态视图 Controller 的 ViewController 。如果你在呈现的 ViewController 上调用它,或者(对于像 <code>UINavigationController</code> 这样的容器 ViewController ,它管理的 ViewController 之一),UIKit 会尝试做正确的事情,但不会总是成功。</p>

<p>假设你引用的 <code>self</code> 是包含 mapView 的 ViewController ,你可以通过 <code>presentingViewController</code> 属性来获取你应该调用 <code>dismissViewControllerAnimated 的对象:完成:</code> 开启。 (如果您需要获取介于两者之间的导航 Controller ,请使用 <code>navigationController</code> 属性。)</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 Storyboard 中关闭 NavigationController?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/12255618/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/12255618/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 Storyboard 中关闭 NavigationController?