有没有办法隐藏 UITableView(分组)中的单元格?

发布于 2024-12-04 12:25:54 字数 45 浏览 1 评论 0原文

如标题中所述,我想隐藏一个单元格而不是将其从表格中删除。有办法做到这一点吗?

As described in the title, I want to hide a cell and not remove it from the table. Is there a way to go about doing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云仙小弟 2024-12-11 12:25:54

您可以使用 next: 设置处理单元格状态(隐藏或不隐藏)的变量:

     - (float)tableView:(UITableView *)tableView 
heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.row == _cellRow)
        return _cellHidden ? 0.0f : _cellHeight;
}

当您想要隐藏或显示单元格时,要求重新加载它。这将触发之前的方法。

_cellHidden = YES;
[_tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:0]] 
                  withRowAnimation:UITableViewRowAnimationAutomatic]

You can use next: set variable that handle cell state (hidden or not):

     - (float)tableView:(UITableView *)tableView 
heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.row == _cellRow)
        return _cellHidden ? 0.0f : _cellHeight;
}

And when you want to hide or show cell ask to reload it. This will trigger previous method.

_cellHidden = YES;
[_tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:0]] 
                  withRowAnimation:UITableViewRowAnimationAutomatic]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文