IOS11 tableview 适配
2017-11-06 本文已影响0人
Cyan_Queen
// tableView 偏移20/64适配
if(@available(iOS11.0, *)) {
self.tableView.contentInsetAdjustmentBehavior=UIScrollViewContentInsetAdjustmentNever;//UIScrollView也适用
}else{
self.automaticallyAdjustsScrollViewInsets=NO;
}