「Swift」UIButtonのタイトルと色を設定する

2021年7月6日

書式
setTitle(xx,for: .normal)
サンプルコード

import UIKit
 
class ViewController: UIViewController {
 
    @IBOutlet weak var button: UIButton!
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
            // タイトル
        button.setTitle("テスト", for: .normal) 
            // 色
        button.setTitleColor(UIColor.green, for: .normal) 
    }
}

 

Swift

Posted by arkgame