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

Ryan Maneo
Ryan Maneo
4,342 Points

How do I do this?

My attempts are below...

structs.swift
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
}

So 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:

struct Car {
    let color: String
    let topSpeed: Double
    let description: String

    init(color: String, topSpeed: Double) {   \\Description is computed and doesn't need to be here
        self.color = color
        self.topSpeed = Speed
        self.description = "Color: \(self.color), Top Speed: \(self.topSpeed)"
    }
}