关于tableView刷新
Posted 朋友有朋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于tableView刷新相关的知识,希望对你有一定的参考价值。
UITabelView的局部刷新
1.
刷新整个tableView用[self.tableView reloadData];
2.
[self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:(UITableViewRowAnimationMiddle)];
刷新点击的cell
3.
[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:indexPath.section] withRowAnimation:(UITableViewRowAnimationMiddle)];
刷新分区下的cell
以上是关于关于tableView刷新的主要内容,如果未能解决你的问题,请参考以下文章