ios - 以编程方式选择行后未调用 UITableView didDeselectRowAtIndexPath
<p><p>我在 <code>UITableView</code></p> 上手动调用方法
<pre><code>;
</code></pre>
<p>并且 <code>UITableViewCell</code> 正在为所选状态正确更新其外观 - 但是当用户再次按下单元格时,委托(delegate)方法 <code>didDeselectRowAtIndexPath</code> 不会按预期调用,而是<code>didSelectRowAtIndexPath</code> 是。</p>
<p>为什么会这样?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>点击 <code>UITableViewCell</code> 总是会导致调用 <code>didSelectRowAtIndexPath</code>。
您要做的是处理 <code>didSelectRowAtIndexPath</code> 中的选择/取消选择。所以在那里检查是否已经选择了点击的行,然后手动取消选择它。否则,这是一个“正常”的行点击,可以选择该行或您想要在那里执行的任何操作。</p></p>
<p style="font-size: 20px;">关于ios - 以编程方式选择行后未调用 UITableView didDeselectRowAtIndexPath,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/24251417/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/24251417/
</a>
</p>
页:
[1]