安全區(qū)域適配總結(jié) http://www.reibang.com/p/efbc8619d56b
//解決iOS11囱持,僅實(shí)現(xiàn)heightForHeaderInSection厅目,沒有實(shí)現(xiàn)viewForHeaderInSection方法時,section間距大的問題
[UITableView appearance].estimatedRowHeight = 0;
[UITableView appearance].estimatedSectionHeaderHeight = 0;
[UITableView appearance].estimatedSectionFooterHeight = 0;
下面這個有bug
EA8E8D2F-6C16-4745-8980-F23C0C1244E0.png
//iOS11 解決SafeArea的問題递胧,同時能解決pop時上級頁面scrollView抖動的問題
if (@available(iOS 11, *)) {
[UIScrollView appearance].contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; //iOS11 解決SafeArea的問題,同時能解決pop時上級頁面scrollView抖動的問題
}