iOS经验总结

iOS UITableView局部刷新 刷新单个cell或sec

2018-09-25  本文已影响17人  施主小欣
镇楼

//一个section刷新

NSIndexSet * indexSet = [[NSIndexSet alloc]initWithIndex:1];

[tableview reloadSections: indexSet withRowAnimation:UITableViewRowAnimationAutomatic];

//刷新单个Cell
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:2 inSection:1];

[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];

上一篇 下一篇

猜你喜欢

热点阅读