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

Jonathan Law
seal-mask
.a{fill-rule:evenodd;}techdegree
Jonathan Law
iOS Development Techdegree Student 6,824 Points

Swift Object Oriented Programming Task 1 of 1 with Initializing -- can't understand my error here

Can't understand why this solution does not pass -- seems to match successful solutions I've seen in other question threads but maybe I'm missing something. Error is of the "bummer" type, something about description not pertaining to what's layed out in the query? No errors listed when I preview.

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

    self.description = "red: \(red), green: \(green), blue: \(blue) alpha: \(alpha)"
          } 
    }

2 Answers

Quoc Nguyen
Quoc Nguyen
10,284 Points

You are missing a comma before alpha in the description, I think

Sam Baldwin
Sam Baldwin
7,018 Points

That might be it - the Treehouse compiler is quite particular about your output exactly matching what it expects.

Sam Baldwin
Sam Baldwin
7,018 Points

I can't see any difference between what I have written, and what you have written, but the below works for me. Possibly the spacing on the curly braces at the end of your code? I did get an error when using uppercase letters in my description, like "Red: (red), Green: \green)"...etc

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

      self.description = "red: \(red), green: \(green), blue: \(blue), alpha: \(alpha)"
    }
}