//解決iOS11吮铭,僅實現(xiàn)heightForHeaderInSection,沒有實現(xiàn)viewForHeaderInSection方法時,section間距大的問題
[UITableView appearance].estimatedRowHeight = 0;
[UITableView appearance].estimatedSectionHeaderHeight = 0;
[UITableView appearance].estimatedSectionFooterHeight = 0;
//iOS11 解決SafeArea的問題柏肪,同時能解決pop時上級頁面scrollView抖動的問題
if (@available(iOS 11, *)) {
[UIScrollView appearance].contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; //iOS11 解決SafeArea的問題姐刁,同時能解決pop時上級頁面scrollView抖動的問題
}