ios - 在运行时从静态 UITableView 中删除行
<p><p>当所有部分和行都在 nib 中静态定义时,是否可以在运行时从 <code>UITableView</code> 中删除行?</p>
<p>在下面的 Storyboard场景中,我可以在运行时删除“Addr 2”字段吗?在这种情况下,我没有向 <code>UITableView</code> 提供数据源。</p>
<p> <img src="/image/oSnqe.png" alt="enter image description here"/> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我不知道“删除”,但您可以使用 <code>tableView:heightForRowAtIndexPath:</code> 隐藏该行。</p>
<pre><code>- (void)methodToToggleAddr2CellVisibility
{
self.addr2CellIsHidden = !self.addr2CellIsHidden;
;
;
}
- (float)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section == 1 && indexPath.row == 1) { // the cell you want to hide
if (self.addr2CellIsHidden == YES) {
return 0;
} else {
return 44;
}
}
return 44;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在运行时从静态 UITableView 中删除行,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/19941813/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/19941813/
</a>
</p>
页:
[1]