
Bruce Röttgers
18,211 PointsI'm trying to solve it with view.backgroundColor
What am I doing wrong? Is view false?
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.
}
var blueColor = UIColor.blue
view.backgroundColor = blueColor
}
1 Answer

Mikis Woodwinter
44,937 PointsHi Bruce,
You want to assign the background color to your view inside the viewDidLoad. Fix that and it'll pass :)