2016-10-17 7 views

答えて

13

スイフト3.0

func setTitle(_ title: String?, 
     for state: UIControlState) // Use this method to set the title for the button 

で変更メソッドシグネチャ例:BTN制御の

btn.setTitle(title: "Title", for: .normal) 

デフォルト状態は、.normal.Normalに変更されます。

// previous 
public static var Normal: UIControlState { get } 

// Swift 3.0 
static var normal: UIControlState { get } 
関連する問題