UIButtonでTitleとその色を定義する方法だよ。
hoge.title = “fuga” とかやっちゃいそうだよね、やっちゃうよね。
SwiftでUIButtonでタイトル(title)と色(color)を定義する
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import UIKit class ViewController: UIViewController { @IBOutlet weak var button: UIButton! override func viewDidLoad() { super.viewDidLoad() button.setTitle("俺がボタンだ", for: .normal) // ボタンのタイトル button.setTitleColor(UIColor.red, for: .normal) // タイトルの色 } } |
setTitle, setTitleColorでそれぞれできるよ。
カンタンだね。