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 2.0 Enumerations and Optionals Objects and Optionals Enums with Raw Values

Nikita Voloboev
Nikita Voloboev
4,816 Points

I'm not really sure why this code doesn't get accepted, can someone help me see what is wrong with it?

I created a constant direction of type Compass and assigned it the value found in the enum's case of South. I am really confused about the whole enum initialisers thing.

I would greatly appreciate any help.

enums.swift
enum Compass: Int {
    case North = 1
    case South
    case East
    case West
}

let direction: Compass
if let dir = Compass(rawValue: 2) {
    direction = dir
}

1 Answer

Nikita, you had the right idea. You just did more work than is needed:

enum Compass: Int {
    case North = 1
    case South
    case East
    case West
}

let direction = Compass(rawValue: 2)

happy coding!