ios - 如何检查选定的单元格是否被重新选择
<p><p>我有一个自定义的 <code>UITableViewCell</code>,它会扩展选择。如果重新选择了被选中的单元格,我想要做的是使单元格高度恢复正常(44)。这是我的代码:</p>
<pre><code>- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if ( && ![ isEqual:indexPath]) {
return 100;
}
return 44;
}
</code></pre>
<p>代码运行良好,但似乎忽略了 if 语句中的第二项。显然我做错了。有办法解决吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我不知道您为什么将 cell 与 indexPath 进行比较。</p>
<pre><code>
</code></pre>
<p>如果您只想扩展选定的单元格。 </p>
<pre><code>- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if ([ isEqual:indexPath])
{
return 100;
}
return 44;
}
</code></pre>
<p>UITableViewDelegate 有取消选择方法</p>
<pre><code>-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
</code></pre>
<p>您需要在此委托(delegate)中重新加载单元格</p>
<pre><code> withRowAnimation:UITableViewRowAnimationFade];
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何检查选定的单元格是否被重新选择,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/28357986/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/28357986/
</a>
</p>
页:
[1]