我只是創建一個應用程序,它有3個UIButton
垂直模式一個接一個。我添加了一些自動佈局來修復我的圖像,但它對於不同的模擬器設備有所不同。我創建的UIButton用故事板。而我將其命名爲Button1,Button2,Button 3
在swift中添加UIButton的約束
這是我viewcontrller.swift
class ViewController: UIViewController {
@IBOutlet weak var button1: UIButton!
@IBOutlet weak var button2: UIButton!
@IBOutlet weak var button3: UIButton!
@IBOutlet weak var titleL: UILabel!
我也看到一些帖子,以解決制約。像這樣的代碼:(爲button1
一個人在這裏,我增加)
self.view.addConstraint(NSLayoutConstraint(item: button1 , attribute: NSLayoutAttribute.Leading, relatedBy: NSLayoutRelation.Equal, toItem: self.view, attribute: NSLayoutAttribute.Leading, multiplier: 1.0, constant: 0.0))
self.view.addConstraint(NSLayoutConstraint(item: button1 , attribute: NSLayoutAttribute.Trailing, relatedBy: NSLayoutRelation.Equal, toItem: self, attribute: NSLayoutAttribute.Trailing, multiplier: 1.0, constant: 0.0))
self.view.addConstraint(NSLayoutConstraint(item: button1 , attribute: NSLayoutAttribute.Bottom, relatedBy: NSLayoutRelation.Equal, toItem: self.view, attribute: NSLayoutAttribute.Bottom, multiplier: 1.0, constant: 0.0))
我需要讓我的按鈕,這樣的形象
在此先感謝!
謝謝你會看到 – jj1