「Swift」UILabelの背景色を設定するサンプル
書式
label.backgroundColor = 値
使用例
import UIKit class ViewController: UIViewController { @IBOutlet weak var label: UILabel! override func viewDidLoad() { super.viewDidLoad() // 青 label.backgroundColor = UIColor.blue } }
Coding Changes the World
書式
label.backgroundColor = 値
使用例
import UIKit class ViewController: UIViewController { @IBOutlet weak var label: UILabel! override func viewDidLoad() { super.viewDidLoad() // 青 label.backgroundColor = UIColor.blue } }