菜鸟教程小白 发表于 2022-12-12 13:45:42

ios - 推送问题 UINavigationController


                                            <p><p>我在尝试从一个 UINavigationController 推送到另一个时遇到了问题。</p>

<p>我到达了我的 CameraViewController - 通过在不同的 ViewController 中选择一个按钮来嵌入 UINavigationController,如下所示:</p>

<pre><code>- (void)goToCamera {
   UIStoryboard *storyboard = ;
   CameraViewController *camera = ;
   [self presentViewController:camera animated:YES completion:^{
   }];
}
</code></pre>

<p>从那里我尝试通过推送来访问我的 PublishViewController - 它没有嵌入 UINavigationController,因为如果来自另一个 UINavigationController,我认为您不需要它。</p>

<p>我尝试这样做:</p>

<pre><code>- (void)goToPublish {
    UIStoryboard *storyboard = ;
    PublishViewController *publishView = ;
    ;
}
</code></pre>

<p>任何想法为什么这不起作用? Controller 从不插入。从我最初使用相机时开始嵌入是否仍然有效,或者我是否还需要初始化 UINavigationController?</p>

<p>这是我的 Storyboard:</p>

<p> <img src="https://s3.amazonaws.com/f.cl.ly/items/2T2E0G0j030x2z2n0K0C/Screen%20Shot%202015-01-11%20at%2010.44.22%20PM.png" alt="Storyboard"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>当你呈现一个名为 VC1 的 viewController 时,VC1 的 navigationController 必须为 nil,除非你呈现一个 navigationController。</p>

<p>你应该知道,当有人(UINavigationController) push 时,vc.navigationController 不是 nil,或者它是 UINavigationController 的 rootViewController。(实际上,nav 的 rootViewController 也被推送到了 nav 的堆栈中)。</p>

<p>您应该创建一个新的导航 Controller 。</p>

<pre><code>- (void)goToCamera {
   UIStoryboard *storyboard = ;
   CameraViewController *camera = ;
   UINav *nav = UINav alloc]initWithRootVC:camera];
   [self presentViewController:nav animated:YES completion:^{
   }];
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 推送问题 UINavigationController,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27895074/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27895074/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 推送问题 UINavigationController