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

My answer isn't being accepted?

The error message is telling me to assign correct background color depending on the temperature... which I think I'm doing it correctly

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

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

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

1 Answer

Hey,

Check out the directions one more time. You should have 3 checks. To set the background color to red, blue, and green. You can use else if statement to solve this:

    var temperature: Double {
        didSet {
            if temperature > 80 {
                view.backgroundColor = UIColor.redColor() // red
            } else if temperature < 40 {
                view.backgroundColor = UIColor.blueColor() // blue
            } else {
                view.backgroundColor = UIColor.greenColor() // green
            }
        }
    }

Awesome. Thanks Gary!