
Unsubscribed User
Pro Student 2,233 Pointshollow
how can i Access the view controller's backing view ?
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
let blueColor = UIColor.blue
view.backgroundColor = blueColor
}
1 Answer

Mitchell Richmond
5,401 PointsIt just means to use view. followed by whatever you are changing. So it would be view.backgroundColor = blueColor.
Jeff McDivitt
23,970 PointsJeff McDivitt
23,970 PointsYou need to put this in viewDidLoad function