iOS开发笔记-60:iOS11 安全域 适配 TableView 向下偏移20 或 64
原因是iOS 11中Controller的automaticallyAdjustsScrollViewInsets属性被废弃了
我的解决方法
if (@available(iOS 11.0, *)) {
_mineTableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
} else {
self.automaticallyAdjustsScrollViewInsets = NO;
}
网友评论