iOS tableView 刷新跳动
2019-04-17 本文已影响0人
1剑天下
使用tableview estimatedRowHeight 自适应高速度时刷新跳动解决方案
[UIView performWithoutAnimation:^{
NSIndexSet *reloadSet = [NSIndexSet indexSetWithIndex:1];
[self.workTable reloadSections:reloadSet withRowAnimation:UITableViewRowAnimationNone];
}];