菜鸟教程小白 发表于 2022-12-12 16:16:04

ios - 从侧边菜单推送 NavigationController 中的 ViewController


                                            <p><p>我正在使用 UINavigationController,其中有一个侧边菜单。问题是,当我想从侧 View 将 UIViewController 推送到 NavigationController 中时,它不起作用。为此,请使用该代码:</p>

<pre><code>;   

CDRecentChats* recentchats = [init];
UIViewController *controller = ;
;
</code></pre>

<p>如你所见,我首先关闭了侧边菜单,然后调用 NavigationController 来推送一个新的 ViewController。使用该代码,唯一发生的事情是菜单已关闭,但 NavigationController 不会推送任何 ViewController。我该怎么办?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>popToViewController</code> 意味着返回到已经成为导航 Controller 堆栈一部分的那个。如果你想显示一个新的,使用 <code>pushViewController</code>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 从侧边菜单推送 NavigationController 中的 ViewController,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19879659/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19879659/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 从侧边菜单推送 NavigationController 中的 ViewController