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

Daniel Nzioka
Daniel Nzioka
3,674 Points

colorLiteralRed (Float) didn't exist in library (ver 9.2) so I used displayP3Red (CGFloat) is it the same?

import UIKit

enum ColorComponent {
    case rgb(CGFloat, CGFloat, CGFloat, CGFloat)
    case hsb(CGFloat, CGFloat, CGFloat, CGFloat)

    func color() -> UIColor {
        switch self {
        case .rgb(let red, let green, let blue, let alpha):
            return UIColor(displayP3Red: red/255.0, green: green/255.0, blue: blue/255.0, alpha: alpha)
        case .hsb(let hue, let saturation, let brightness, let alpha):
            return UIColor(hue: hue/360.0, saturation: saturation/100.0, brightness: brightness/100.0, alpha: alpha)
        }
    }

}

ColorComponent.rgb(61.0, 120.0, 198.0, 1.0).color()

Well, I think that CGFloat is the same as Float but I don't know if colorLiteralRed is equal to displayP3Red. Does that come from a code challenge?

1 Answer

Daniel Nzioka
Daniel Nzioka
3,674 Points

No, Pasan was running it on a course video, I however got the same color results as he did.