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 trialRyan Maneo
4,342 PointsHow do I do this?
My attempts are below...
struct RGBColor {
let red: Double
let green: Double
let blue: Double
let alpha: Double
let description: String
// Add your code below
let colours = RGBColor(red: 86.0, green: 191.0, blue: 131.0, alpha: 1.0) // Attempt #1
init(red: 86.0, green: 191.0, blue: 131.0, alpha: 1.0) // Attempt #2
}
Blair Yacishyn
27,125 PointsBlair Yacishyn
27,125 PointsSo the question isn't asking you to actually input the values, but create an init method that would properly handle : given the values 86.0 for red, 191.0 for green, 131.0 for blue and 1.0 for alpha.
For example if I wanted an init method for a car that would take a top speed and a color my code would look like this: