美文网首页
iOS解决上拉加载循环调用问题

iOS解决上拉加载循环调用问题

作者: 凶猛老鹰 | 来源:发表于2018-11-05 20:57 被阅读15次

    在iOS11中MJRefresh随着tableView的变化而做了一些处理:

    UITableView:默认开启Self-Sizing

    iOS11以后,Self-Sizing默认开启,包括headers, footers。如果项目中没使用estimatedRowHeight属性,在iOS11下会有奇奇怪怪的现象,因为iOS11之前,estimatedRowHeight默认为0,Self-Sizing自动打开后,contentSize和contentOffset都可能发生改变。可以通过以下方式禁用:

    self.tableView.estimatedRowHeight = 0; 

    self.tableView.estimatedSectionHeaderHeight = 0; 

    self.tableView.estimatedSectionFooterHeight = 0;

    相关文章

      网友评论

          本文标题:iOS解决上拉加载循环调用问题

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