
Tyler Dotson
Pro Student 1,740 Pointshow to I do change the background color??
Dont i do view.backgroundColor = UIColor.blue? but that doesnt work. why??
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
let blueColor = UIColor.blue
view.backgroundColor = blueColor
}
1 Answer

Abdullah Althobetey
18,216 Pointsput this code inside the viewDidLoad() method and it should work.