菜鸟教程小白 发表于 2022-12-12 22:51:03

ios - Disclosure Indicator 不调用 seque 而 Detail Disclosure 调用


                                            <p><p>我有一个有趣的问题。当人们单击表格 View 中的箭头时,我希望弹出详细信息屏幕。细胞是动态的。 </p>

<p>当我选择 Disclosure Indicator 时 - 我没有调用 segue,也没有调用 accessoryButtonTappedForRowWithIndexPath。当我将其更改为 Detail Disclosure 时,一切正常。</p>

<p>我可以做些什么来使披露指示器像详细披露一样起作用?</p>

<p>谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>披露指示器不是按钮,因此不会触发 <code>tableView:accessoryButtonTappedForRowWithIndexPath:</code> 委托(delegate)方法,而详细披露 <em>is</em> 是一个按钮,因此会触发该方法.</p>

<p>我想,你能做的最好的事情就是在你的表格 View 单元格中添加一个 <code>UIButton</code> 并给它一个非常类似于默认表格 View 显示指示器的图像。不过,这是一种 hacky 解决方案,所以我不鼓励您实际这样做。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Disclosure Indicator 不调用 seque 而 Detail Disclosure 调用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24103040/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24103040/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Disclosure Indicator 不调用 seque 而 Detail Disclosure 调用