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 Object-Oriented Swift 2.0 Complex Data Structures Custom Initializers

Should I redefine the value of description within the initializer?

Would this be a good value for 'description' = "red: (red), green:(green), blue: (blue), alpha: (alpha)"

trying to figure out how to create a new value, playing around with stuff like this in xcode: struct RGBColor { let red: Double let green: Double let blue: Double let alpha: Double

let description: String = "red: \(red), green:\(green), blue: \(blue), alpha: \(alpha)"

// Add your code below
init(red: Double, green: Double, blue: Double, alpha: Double) {
    self.red = red
    self.green = green
    self.blue = blue
    self.alpha = alpha
}
return description
structs.swift
struct RGBColor {
    let red: Double
    let green: Double
    let blue: Double
    let alpha: Double

    let description: String

    // Add your code below
        init(red: Double, green: Double, blue: Double, alpha: Double) {
        self.red = red
        self.green = green
        self.blue = blue
        self.alpha = alpha
    }
    return description
}

1 Answer

Almost. You need to create a value for description inside the initializer, rather than outside, and you are missing a space in your description String:

    init(red: Double, green: Double, blue: Double, alpha: Double) {
      self.red = red
      self.green = green
      self.blue = blue
      self.alpha = alpha

      //this must be inside, and there needs to be a space between green: and \(green)
      description = "red: \(red), green: \(green), blue: \(blue), alpha: \(alpha)"
    }

Thanks a million, the prompt through me off when it said "use the initializer to create a value for the first four properties."

I was thinking that your answer would have worked, just didn't try it b/c the wording of the challenge led me to think i 'only' needed to define RGBa values in the init. :\