使用Autolayout并排定位两个UITextField

时间:2014-10-30 07:12:19

标签: ios objective-c xcode autolayout

我是Autolayout的新手,所以我很难理解如何并排放置两个UITextFields。 E.g:

enter image description here

我尝试了很多约束,但我无法弄清楚如何正确定位它们。运行应用程序时。

有关如何执行此操作的任何见解?

2 个答案:

答案 0 :(得分:2)

尝试将签入文本字段的顶部,左侧和底部固定到superview。将签出文本字段的顶部,右侧和底部固定到superview。并使用“pin”按钮(故事板的左下角)检查签出的左边约束,两行之间的框图标。

enter image description here

enter image description here

答案 1 :(得分:0)

其他选项是使用这些TextFields

创建堆栈视图

enter image description here

您现在有这样的观点:

enter image description here

现在,您必须选择堆栈视图的约束:

enter image description here

然后您只需在分发中选择Fill Proportionally

enter image description here

最终结果:

enter image description here