菜鸟教程小白 发表于 2022-12-12 23:18:18

ios - 允许在超过 2 个 View 上导航


                                            <p><p>所以我正在尝试创建一个 iphone 应用程序并尝试设置导航 Controller 。我让它从一个 View 到另一个 View 然后返回。(下面的代码)有没有办法为多个 View 做这件事?例如,从一开始按下一个按钮会切换到另一个 View ,然后按下另一个按钮会切换到另一个不同的 View 。在不使用 Storyboard 和实际编程的情况下,我将如何实现导航 Controller 的工作?任何提示将不胜感激。</p>

<p>这是在 AppDelegate 中:</p>

<pre><code>self.window = [ initWithFrame:[ bounds]];
    // Override point for customization after application launch.
    self.window.backgroundColor = ;
    LoginViewController *loginController = [ init];
    UINavigationController *navController = [   initWithRootViewController:loginController];
    self.window.rootViewController = navController;
    ;
    return YES;
</code></pre>

<p>这是在其中一个 View 中的按钮方法之一:</p>

<pre><code>;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这就是导航 Controller 的作用。</p>

<p>您可以像这样导航到多个 View ;</p>

<blockquote>
<p>To navigate from main view to secondViewController</p>
</blockquote>

<pre><code>;
</code></pre>

<p>当前的导航栈是mainViewcontroller -> secondViewController</p>

<blockquote>
<p>From second View to third View</p>
</blockquote>

<pre><code>;
</code></pre>

<p>当前导航栈为mainViewcontroller -> secondViewController ->thirdViewController</p>

<blockquote>
<p>To go back to previous view you can call</p>
</blockquote>

<pre><code> ;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 允许在超过 2 个 View 上导航,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24402906/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24402906/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 允许在超过 2 个 View 上导航