UILabelの背景色(backgroundColor)を変更する方法だよ。
特に難しいこともないので早速コードだよ。
SwiftでUILabelの背景色(backgroundColor)を変更する
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import UIKit class ViewController: UIViewController { @IBOutlet weak var label: UILabel! override func viewDidLoad() { super.viewDidLoad() label.backgroundColor = UIColor.red // 赤 label.backgroundColor = UIColor.blue // 青 label.backgroundColor = UIColor.white // 白 } } |
backgroundColor = 色 で変更できるよ。
見たまんまなので今回はこれくらいで。