我检查了故事板中的Adjust Scroll View Insets
属性并固定了tableview以适合其超级视图。
当我在iOS版本下运行应用程序时,tableView
和navigation bar
覆盖tab bar
。但它在iOS 11上完美运行。
我错过了什么?
P.S。我正在使用xcode 9
答案 0 :(得分:0)
我通过添加以下代码解决了这个问题:
if #available(iOS 11.0, *) {
resultsController.tableView.contentInsetAdjustmentBehavior = .never
} else {
resultsController.automaticallyAdjustsScrollViewInsets = true
}