ios中的障碍,如android ConstraintLayout

问题描述

我想在两个多行标签下方放置一个按钮,如下所示。

enter image description here

这可以在 android 中使用 ConstraintLayout 屏障完成 想知道如何在 ios Storyboard 中完成

解决方法

我会为两个标签使用 UIStackView,并将 UIButton 附加到 UIStackView 的底部。 以下屏幕截图应阐明这一点:

Interfacebuilder

UIStackView 设置为 axis = horizontalAlignment = Top

UIStackView settings

您可能想要添加一些间距。

这些是我使用过的约束:

Constraints

,

StackView 允许您创建它们。 enter image description here

- 故事板约束

enter image description here

enter image description here

  • StackView 位于故事板底部。
    你可以参考下图。

enter image description here

  • 详细来说,您可以在 StackViewLabel 中设置每个属性。

enter image description here

enter image description here