美文网首页
2019-04-11ios使用上拉加载更多重复加载的问题

2019-04-11ios使用上拉加载更多重复加载的问题

作者: 渴望平静生活的上班族 | 来源:发表于2019-04-11 11:16 被阅读0次
self.tableView.estimatedRowHeight = 0

self.tableView.estimatedSectionHeaderHeight = 0

self.tableView.estimatedSectionFooterHeight = 0

添加以上三行再试试 问题大概就解决了

不行的话 再加上这行

//解决上拉重复加载问题
        if #available(iOS 11.0, *) {
            tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentBehavior.never
        } else {
            tableView.translatesAutoresizingMaskIntoConstraints = false
        }

相关文章

网友评论

      本文标题:2019-04-11ios使用上拉加载更多重复加载的问题

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