tableView留白处理

2021-04-15  本文已影响0人  CoderZXS

IOS 11 系统下TABLEVIEW顶部多出一些留白的解决方法

适配iOS11--contentInsetAdjustmentBehavior

tab.estimatedRowHeight = 0;
tab.estimatedSectionFooterHeight = 0;
tab.estimatedSectionHeaderHeight = 0;

if #available(iOS 11.0, *) {
contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
} else {
self.automaticallyAdjustsScrollViewInsets = false;
};

上一篇下一篇

猜你喜欢

热点阅读