菜鸟教程小白 发表于 2022-12-13 15:21:32

iphone - 在编辑模式下选择单元格时未调用 didSelectRowAtIndexPath


                                            <p><p>我在编辑模式下遇到了表格 View 问题。</p>

<p>表格应允许用户在编辑模式下选择多个文件,并且应标记复选框。</p>

<p>我遇到的问题是在取消选择选定单元格时未调用 didSelectRowAtIndexPath。但是,当单元格未被选中并被选中时会调用它。</p>

<p>tableview 设置了以下属性 </p>

<pre><code>    self.tblFiles.allowsMultipleSelectionDuringEditing = YES;
    self.tblFiles.allowsSelectionDuringEditing=YES;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在取消选择时您应该使用</p>

<pre><code>tableView:didDeselectRowAtIndexPath:
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 在编辑模式下选择单元格时未调用 didSelectRowAtIndexPath,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11690037/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11690037/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 在编辑模式下选择单元格时未调用 didSelectRowAtIndexPath