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

I'm gonna North again I guess

the error: Make sure you're creating an enum value using the raw value initializer and assigning the result to direction

enums.swift
enum Compass: Int {
case North = 0
case South = 180
case East = 90
case West = 270
}
let direction = Compass.South.rawValue

2 Answers

Moritz Lang
Moritz Lang
25,909 Points

Hi, raw value initializer means that you grab an enum case by its raw value. What you've done is getting the raw value of Compass.south. :) The rawValue initializer looks like the following:

let direction = Compass(rawValue: 180)

thks again mate! any news from the previous code? cheers