UITableView刷新局部

//局部section刷新
NSIndexSet *nd = [[NSIndexSet alloc] initWithIndex:1]; //刷新第二个section
[self.tableView reloadSections:nd withRowAnimation:UITableViewRowAnimationAutomatic];

//局部cell刷新
NSIndexPath *te=[NSIndexPath indexPathForRow:2 inSection:0];//刷新第一个section的第二行
[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:te,nil] withRowAnimation:UITableViewRowAnimationMiddle];

 

posted @ 2016-02-24 10:10  TianXiang.Liu  阅读(251)  评论(0编辑  收藏  举报