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

iphone - 以正确的方式从导航堆栈中删除 View Controller


                                            <p><p>我的导航堆栈中有 5 个 ViewController (比如 A、B、C、D、E)。 ViewController E 在栈顶。在 ViewController E 中单击按钮,我想移动到 ViewController C。为此,我使用以下代码。</p>

<pre><code>NSMutableArray *navigationarray = ;
;
;
self.navigationController.viewControllers = navigationarray;
;
</code></pre>

<p>有没有更好的方法来做到这一点,我可以检查哪个 viewController 正在从导航数组中删除</p>

<p>编辑:在这种情况下,我可以检查 ViewController 是否被删除 <code>isKindOfClass</code> 特定 ViewController 的类,如</p>

<pre><code>if ([ isKindOfClass:])
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>从导航 Controller 弹出 ViewController 是一种简单的方法。这将删除 VC E 和 D。</p>

<pre><code>;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 以正确的方式从导航堆栈中删除 ViewController ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10612431/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10612431/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 以正确的方式从导航堆栈中删除 View Controller