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

Memberwise initializer

My code works in Xcode but when I compile it here it gives me an error:Don't use the memberwise initializer Swift creates. Add your own custom initializer as specified in the directions

structs.swift
struct RGBColor {
    let red: Double
    var green: Double
    let blue: Double
    let alpha: Double

    let description: String

    // Add your code below
    init (hrvoje: Double, boban: Double, ante: Double, jura: Double) {
        self.red =  hrvoje
        self.green = boban
        self.blue = ante
        self.alpha = jura

        self.description = "red: \(hrvoje) green: \(boban), blue: \(ante), alpha: \(jura)"

    }

}

2 Answers

Manuel Pascual
Manuel Pascual
4,676 Points

Mmmmm... did you try to use the same struct's properties names for the init()'s parameters? I did that and I passed the challenge

there is a comma missling self.description = "red: (hrvoje), green: (boban), blue: (ante), alpha: (jura)"