Using Auto Layout to have UILabel and UITextField next to each other

后端 未结 2 606
我寻月下人不归
我寻月下人不归 2021-01-13 09:45

I am trying to position a UILabel instance label next to a UITextField instance textfield like done in the iOS Settings dialogs. I\'m using Auto Layout and constraints with

2条回答
  •  走了就别回头了
    2021-01-13 10:25

    Following constraints which I set in the storyboard works exactly how you want.

    • Horizontal space constraint between label and superview.(default)
    • Horizontal space constraint between textfield and superview. (default)
    • Horizontal space constraint between textfield and label.

提交回复
热议问题