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 trialDmitry Vashlaev
2,715 PointsProtocols
Hello, I have some troubles with this code. It seems to be ok but it's not working. Any ideas?
// Declare protocol here
protocol ColorSwitchable {
func switchColor(color: Color)
}
enum LightState {
case on, off
}
enum Color {
case rgb(Double, Double, Double, Double)
case hsb(Double, Double, Double, Double)
}
class WifiLamp {
let state: LightState
var color: Color
init() {
self.state = .on
self.color = .rgb(0,0,0,0)
}
}
1 Answer
Lucian Rotari
12,007 PointsHi Dimitry, you have got all right but you just missed one important thing.
Just read this sentence careful
For the sake of this challenge, make sure your external argument label is omitted by using an underscore.
I just copied and paste your code snipped and added a underscore for external argument.
So your code must look like that:
protocol ColorSwitchable {
func switchColor( _ color: Color)
}
But I found this on apple guides
As with type property requirements, you always prefix type method requirements with the static keyword when theyβre defined in a protocol.
However it works without 'static' as well.
Dmitry Vashlaev
2,715 PointsDmitry Vashlaev
2,715 PointsI didn't get the task right, thank you for help.
Lucian Rotari
12,007 PointsLucian Rotari
12,007 PointsYou can read more about this on Apple documentation or βThe swift programing languageβ provided by Apple