iOS11(仅是iOS11和12)刷新tableview会出现向
2019-02-21 本文已影响0人
Mayer_Lee
bug描述:在iOS11和12系统下,刷新tableview时,会出现向上偏移一大块的鬼畜现象。
解决方法:代码中添加以下三行代码即可
tableView.estimatedRowHeight = 0
tableView.estimatedSectionFooterHeight = 0
tableView.estimatedSectionHeaderHeight = 0