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 trialHrvoje Cukman
1,894 PointsMemberwise 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
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
4,676 PointsMmmmm... did you try to use the same struct's properties names for the init()'s parameters? I did that and I passed the challenge
Volhan Salai
437 Pointsthere is a comma missling self.description = "red: (hrvoje), green: (boban), blue: (ante), alpha: (jura)"