Keep UIButtons centered using autolayout in storyboard

霸气de小男生 提交于 2019-12-10 04:36:49

问题


I have two buttons contained within a view (to be precise, a UITableView footer):

I would like to keep the buttons centered (with the gap in-between) regardless of the width of the superview (which will increase, for example, if the device is rotated to portrait orientation).

Is there a way to define these autolayout constraints purely in the storyboard, or will I need to use NSLayoutConstraints in code?


回答1:


You can achieve that by adding a constraint for each button to align the leading/trailing to the center of the container view, plus some separation between them.

How to do it:

  • For the left side button, add a constraint between the button and superview to center it horizontally.

  • Edit the constraint and change the "Second Item" attribute to be button1.trailing, and set a constant of 10 (or whatever distance you want between the right border of the button and the center of the screen).

  • For the right side button, add a constraint between the button and superview to center it horizontally.

  • Edit the constraint and change the "Second Item" attribute to be button2.leading and set a constant of -10 (or whatever distance you want between the left border of the button and the center of the screen).



来源:https://stackoverflow.com/questions/23074414/keep-uibuttons-centered-using-autolayout-in-storyboard

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!