菜鸟教程小白 发表于 2022-12-13 03:32:31

ios - 将取消 UIButton 添加到导航 Controller


                                            <p><p>我正在使用 Storyboard ,我在 ViewController 中添加了一个导航栏,我在导航栏中添加了两个栏按钮(在 Storyboard 中不是代码),一个是“保存”按钮,另一个是“取消”按钮。</p>

<p>现在我希望当我按下取消按钮时,已经查看过的 Controller 消失并且前一个 ViewController 显示出来。我应该在取消按钮的操作方法中包含什么代码:</p>

<pre><code>- (IBAction)cancel:(id)sender
{
    // what code should be written here ?
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这首先取决于您如何呈现 ViewController 。如果您以模态方式呈现它,那么您将使用它:</p>

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

<p>但是,如果你通过导航 Controller 推送到当前 ViewController ,那么你会使用这个:</p>

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