如何以编程方式将视图的底部约束从安全区域更改为超级视图?

时间:2020-05-25 10:24:30

标签: ios swift autolayout

我认为底部被限制在这样的安全区域

enter image description here

我需要更改它,以使其只能通过程序进行超级观看。

我不知道该对约束引用做什么

<BorderPane GridPane.rowIndex="0" GridPane.columnIndex="1">
    <left>
        <Label text="Text">
            <font>
                <Font name="Arial" size="13"></Font>
            </font>
        </Label>
    </left>
</BorderPane>
```

1 个答案:

答案 0 :(得分:1)

您可以删除故事板上的约束,并通过如下代码给出约束:

sheetView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true

注意:要以编程方式更改约束,则不需要@IBOutlet