如何在故事板上为xcode

时间:2016-09-17 22:14:02

标签: ios iphone swift xcode

我正在尝试放置对所有设备都有响应的按钮。有人可以帮帮我吗?我一直在尝试这个但从未奏效。随附的屏幕截图我正在寻找 - storyboard提前致谢

1 个答案:

答案 0 :(得分:1)

我会尝试这些约束。您可以调整常量值以获得所需的外观:

顶部按钮:

  1. Button.Leading等于Superview.Leading。
  2. Button.Top等于Top Layout Guide.Bottom with constant 25
  3. Superview.Trailing等于Button.Trailing,常量为70
  4. Button.Height等于常量140
  5. 中键:

    1. Button.Leading等于Superview.Leading with constant 70
    2. Button.Top等于具有常量35的FirstButton.Bottom。
    3. Superview.Trailing等于Button.Trailing。
    4. 底部按钮:

      1. Button.Leading等于Superview.Leading。
      2. Button.Top等于具有常量35的SecondButton.Bottom。
      3. Superview.Trailing等于Button.Trailing,常量为70
      4. 底部布局指南。顶部等于Button.Bottom,常量为45
      5. Button.Height等于常量140
      6. 这将允许中间按钮在较大的设备上增加高度,并且所有按钮的宽度都会在较大的设备上增加。