6
@IBOutlet weak var catParentIdButton: UIButton!
我有這段代碼,現在我想以編程方式編寫按鈕標籤。
在swift 3.0中編寫按鈕標籤的語法是什麼?如何在swift 3中設置按鈕標籤?
@IBOutlet weak var catParentIdButton: UIButton!
我有這段代碼,現在我想以編程方式編寫按鈕標籤。
在swift 3.0中編寫按鈕標籤的語法是什麼?如何在swift 3中設置按鈕標籤?
方法簽名在夫特3.0改變
func setTitle(_ title: String?,
for state: UIControlState) // Use this method to set the title for the button
例如:
btn.setTitle(title: "Title", for: .normal)
注意默認一BTN控制的狀態被改變爲.Normal
到.normal
。
// previous
public static var Normal: UIControlState { get }
// Swift 3.0
static var normal: UIControlState { get }
'downloadButton.setTitle(「Your Title」,for:.normal)' – iDeveloper