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 Swift Enums and Structs Enums Enum Members and Raw Values

Zachary Goforth
Zachary Goforth
748 Points

How do I pass Challenge Task 2 of Enums and Structs?

I put in the code below and received this error...

error: use of unresolved identifier 'Slow' var turtleSpeed = Slow.rawValue ^

What do I need to change?

enum.swift
enum Speed: Int {
    case Slow = 10 
    case Medium = 50 
    case Fast = 100
}

var turtleSpeed = Slow.rawValue

3 Answers

You need to tell it which enum Slow is part of:

var turtleSpeed = Speed.Slow.rawValue

Hope that helps!

Steve.

No problem! Glad to help!

Steve.

When you're declaring your turtleSpeed variable, and you set it to Slow.rawValue, the computer doesn't know that it's of type Speed. It's basically saying, you're asking for the rawValue of Slow, but, what is Slow? Well, Slow is a Speed. So, we can write this as Speed.Slow.rawValue in order to let the computer know that you're talking about the type Speed.

As Steve replied before me,

var turtleSpeed = Speed.Slow.rawValue

I hope the explanation makes sense and helps.

Kamran Ismayilov
Kamran Ismayilov
5,753 Points

var Guys I'm little bit confused, what then this means ?

var turtleSpeed = Speed(rawValue: 10)

This is what came to my mind at first when I read the instructions