// 刷新某一行
NSIndexPath*indexPath=[NSIndexPath indexPathForRow:3inSection:0];
[self.tableView reloadRowsAtIndexPaths:@[indexPath]withRowAnimation:UITableViewRowAnimationFade];
// 刷新某一组
NSIndexSet*indexSet=[[NSIndexSet alloc]initWithIndex:1];
// 组数
[self.tableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationFade];
:仅做记录
网友评论