是否可以刷新 ui 表视图的一部分而不刷新其他单元格?
是否可以刷新表视图中的某些单元格而不刷新其他单元格?
我需要同时删除、插入和添加一些单元格。为此,我想经常刷新表格。
[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,尝试
- (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:
.