Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Intermediate Swift 2 Properties Property Observers

Property Observers Code challenge in Intermediate Swift.

My code is compiling and the conditional statements are correct, but it still says I'm not setting the colors correctly?

observer.swift
class TemperatureController: UIViewController {
    var temperature: Double = 0 {
      didSet(newValue) {
        if newValue > 80.0 {
          self.view.backgroundColor = UIColor.redColor()
        } else if newValue < 40.0 {
         view.backgroundColor = UIColor.blueColor() 
        } else {
          view.backgroundColor = UIColor.greenColor()
        }
      }
    }

    init(temperature: Double) {
        self.temperature = temperature
        super.init()
    }

    override func viewDidLoad() {
        view.backgroundColor = UIColor.whiteColor()
    } 
}

1 Answer

Schaffer Robichaux
Schaffer Robichaux
21,729 Points

Patrick, looks like you are setting your boolean comparisons in the if...else property observer to didSet's default property newValue; however, the comparison should be with the temperature variable. -Cheers

import UIKit

class TemperatureController: UIViewController {
    var temperature: Double {
        didSet{
            if temperature > 80.0 {
                view.backgroundColor = UIColor.redColor()
            } else if temperature < 40.0 {
                view.backgroundColor = UIColor.blueColor()
            } else {
                view.backgroundColor = UIColor.greenColor()
            }
        }
    }

    init(temperature: Double) {
        self.temperature = temperature
        super.init()
    }

    override func viewDidLoad() {
        view.backgroundColor = UIColor.whiteColor()
    }
}

Okay that makes more sense now. Thanks Schaffer!