What is the best approach for horizontally aligning 5 buttons with Autolayout

筅森魡賤 提交于 2019-12-01 09:32:31

You just need to give leading, trailing and equal-widths constraints between adjacent buttons.

Steps (We'll only consider horizontal constraints here):

  1. Add leading constraint from the first button to the superview (or left-side sibling view).
  2. Add horizontal spacing constraint between:
    • First button and second button.
    • Second button and third button.
    • Third button and fourth button.
    • Fourth button and fifth button.
  3. Add trailing constraint from the fifth button to the superview (or right-side sibling view).
  4. Add equal widths constraint between:
    • First button and second button.
    • Second button and third button.
    • Third button and fourth button.
    • Fourth button and fifth button.

If you follow this approach, you need not add extra views to align the buttons. Please see the screenshots below for understanding this better.

As i understand your horizontally aligning 5 buttons problem with Autolayout, I make some draw to how you fix it. It has following:


Hope, It'll helpful to you.

You should use a horizontal stack view. You set the constraints of the stack view to its superview, and then drop in your buttons. You need to adjust spacing, stretch to fill, etc in the attributes inspector and it'll be perfectly aligned.

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