美文网首页
iOS tableView 刷新跳动

iOS tableView 刷新跳动

作者: 1剑天下 | 来源:发表于2019-04-17 11:13 被阅读0次

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

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

    相关文章

      网友评论

          本文标题:iOS tableView 刷新跳动

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