在iOS 10和下面调整滚动视图插图不能正常工作

时间:2017-11-15 20:00:28

标签: ios xcode

我检查了故事板中的Adjust Scroll View Insets属性并固定了tableview以适合其超级视图。

当我在iOS版本下运行应用程序时,tableViewnavigation bar覆盖tab bar。但它在iOS 11上完美运行。

我错过了什么?

P.S。我正在使用xcode 9

1 个答案:

答案 0 :(得分:0)

我通过添加以下代码解决了这个问题:

if #available(iOS 11.0, *) {
    resultsController.tableView.contentInsetAdjustmentBehavior = .never
} else {
    resultsController.automaticallyAdjustsScrollViewInsets = true
}