1.使用明杰上拉加载更多的时候出现多次加载的情况
原因是UITableView:默认开启Self-Sizing
IOS11以后,Self-Sizing默认开启,包括Headers, footers。如果项目中没使用estimatedRowHeight属性,在IOS11下会有奇奇怪怪的现象,因为IOS11之前,estimatedRowHeight默认为0,Self-Sizing自动打开后,contentSize和 contentOffset都可能发生改变。
解决的办法是加上一下三句代码就可以搞定
self.tableView.estimatedRowHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;
self.tableView.estimatedSectionHeaderHeight = 0;
网友评论