美文网首页bug问题
刷新UITableView时UI乱跳的解决方案

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

作者: 缺舟 | 来源:发表于2018-10-08 09:56 被阅读17次
  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乱跳的解决方案

    本文链接:https://www.haomeiwen.com/subject/qrsdaftx.html