故事板中的控制约束
Control constraint in storyboard
我在故事板中有两个控件,名为 xLabel
和 yLabel
yLabel
可以在屏幕上的任何位置。
xLabel
比 yLabel
高 50,并且与 yLabel
右对齐
换句话说,xLabel
的x和y位置依赖于yLabel
。如何在 xLabel
中设置约束?可以这样做吗?
谢谢
yLabel can be any where on screen
不,不能。您必须提供明确定位它的约束条件。
xLabel is 50 above yLabel, and right align with the yLabel. Is it possible to do this?
当然可以。将 xLabel 的底部固定到 yLabel 的顶部,constant
为 50,并将 xLabel 的右边缘固定到 yLabel 的右边缘,constant
为 0.
我在故事板中有两个控件,名为 xLabel
和 yLabel
yLabel
可以在屏幕上的任何位置。
xLabel
比 yLabel
高 50,并且与 yLabel
换句话说,xLabel
的x和y位置依赖于yLabel
。如何在 xLabel
中设置约束?可以这样做吗?
谢谢
yLabel can be any where on screen
不,不能。您必须提供明确定位它的约束条件。
xLabel is 50 above yLabel, and right align with the yLabel. Is it possible to do this?
当然可以。将 xLabel 的底部固定到 yLabel 的顶部,constant
为 50,并将 xLabel 的右边缘固定到 yLabel 的右边缘,constant
为 0.