iOS 11 tableview滑动到底部会闪动一下
2018-01-22 本文已影响23人
流老湿
初始化tableview 的时候添加如下代码
_tableView.estimatedRowHeight = 0;
_tableView.estimatedSectionHeaderHeight = 0;
_tableView.estimatedSectionFooterHeight = 0;
if (@available(iOS 11.0, *)) {
_tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}
scrollview同理