表集合视图不坚持在ipad上的底部布局xcode

时间:2018-07-02 15:52:33

标签: ios xcode autolayout constraints ios-autolayout

嗨,大家好,我有一个表格视图,它不固定在ipad的底部,但在iphone上可以。这是一个简单的表格视图,其约束基本上是0底部,0领先,0尾部,我将在此处附加图像。

the problem

the constraints

1 个答案:

答案 0 :(得分:0)

这种奇怪的行为来自于滚动视图插入,让我们在视图控制器中尝试一下:

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