UITableView的单个cell与单个section的刷新

刷新UITableView上的单个cell

//获取需要刷新的cell所在位置
NSIndexPath * indexPath = [NSIndexPath indexPathForRow:0 inSection:1];
//刷新
[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationAutomatic];

刷新UITableView上的单个section

//获取需要刷新的section所在位置
NSIndexSet * indexSet = [NSIndexSet indexSetWithIndex:2];
//刷新
[self.tableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];

你可能感兴趣的:(UITableView的单个cell与单个section的刷新)