刷新UITableView时UI乱跳的解决方案

  1. 方案一
//在AppDelegate中添加,可以通过以下方式禁用
    if (@available(iOS 11.0, *)) {
        
        UITableView.appearance.estimatedRowHeight = 0;
        UITableView.appearance.estimatedSectionFooterHeight = 0;
        UITableView.appearance.estimatedSectionHeaderHeight = 0;
    }
  1. 方案二
[UIView performWithoutAnimation:^{
        NSIndexSet *reloadSet = [NSIndexSet indexSetWithIndex:1];
        [self.workTable reloadSections:reloadSet withRowAnimation:UITableViewRowAnimationNone];
}];

你可能感兴趣的:(刷新UITableView时UI乱跳的解决方案)