美文网首页
UITableView上拉加载跳动的问题

UITableView上拉加载跳动的问题

作者: 王律 | 来源:发表于2019-05-23 19:01 被阅读0次
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath
*)indexPath {

 // 解决上拉跳动的问题
    if (indexPath.row > 1) {
        CGFloat cellHeight = [tableView rectForRowAtIndexPath:[NSIndexPath indexPathForRow:(indexPath.row - 1) inSection:indexPath.section]].size.height;
        self.tableView.estimatedRowHeight = cellHeight;
    }
    
    //。。。你之前的代码  

    return cell;
}

相关文章

网友评论

      本文标题:UITableView上拉加载跳动的问题

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