是否可以刷新 ui 表视图的一部分而不刷新其他单元格?

发布于 2024-09-26 04:14:22 字数 211 浏览 6 评论 0原文

是否可以刷新表视图中的某些单元格而不刷新其他单元格?

我需要同时删除、插入和添加一些单元格。为此,我想经常刷新表格。

[self.tableView reloadData];

  • 我认为此代码用于刷新表中的所有单元格。我对此不太确定。因为我的表格包含大量单元格,可能需要一些时间才能重新加载所有单元格。

提前致谢....

Is it possible to refresh some cells without refreshing other cells in a table view?

I need to delete and insert and add some cells simultaneously. For that i want to refresh the table frequently.

[self.tableView reloadData];

  • This code is used to refresh all the cells in table i think. I'm not sure about this. Because my table contains huge amount of cell which may take some time to reload all cells.

Thanks in Advance....

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

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

发布评论

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

评论(1

风尘浪孓 2024-10-03 04:14:22

是的,尝试 - (void)reloadRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation。另请参阅:insertRowsAtIndexPaths:withRowAnimation:deletetRowsAtIndexPaths:withRowAnimation:

Yes, try - (void)reloadRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation. See also: insertRowsAtIndexPaths:withRowAnimation:, deletetRowsAtIndexPaths:withRowAnimation:.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文