iOS tableView 刷新跳动

使用tableview estimatedRowHeight 自适应高速度时刷新跳动解决方案

[UIView performWithoutAnimation:^{
        NSIndexSet *reloadSet = [NSIndexSet indexSetWithIndex:1];
        [self.workTable reloadSections:reloadSet withRowAnimation:UITableViewRowAnimationNone];
}];

你可能感兴趣的:(iOS tableView 刷新跳动)