菜鸟教程小白 发表于 2022-12-13 11:06:17

ios - 如何使用 Storyboard 将两个 View Controller 连接到一个 View Controller ?


                                            <p><p>我正在尝试将两个 ViewController 连接到一个 Controller 中。如下图所示,当点击“加号”项目时,屏幕出现并且效果很好。但是,另一个 segue 不能正常工作。当我第一次点击任何行时,它不会带我进入 View ,但在第一次点击后它会开始按我的意愿将我带到 View 。当我第一次点击任何一行时,我无法弄清楚为什么它没有带我去。这是 <code>didSelectRowAtIndexPath</code> 代码:</p>

<pre><code>- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{
    DovizDetailViewController *detail = ;
    ;
}
</code></pre>

<p>下面是我的 Storyboard。问题出在上面的观点上,而且是segue。</p>

<p> <img src="/image/ghxYm.png" alt="Two view connected to one"/> </p>

<p>希望你能帮助我。</p>

<p>谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>将 <code>didDeselectRowAtIndexPath</code> 更改为 <code>didSelectRowAtIndexPath</code></p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何使用 Storyboard 将两个 ViewController 连接到一个 ViewController ?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31025895/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31025895/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何使用 Storyboard 将两个 View Controller 连接到一个 View Controller ?