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 Build a Weather App Refactoring Using Codable Recap: Refactoring Using Codable

I submitted : enum CodingKeys: String, CodingKey { case model = "model" } It keeps saying this is wrong. Why?

Please help get this quiz questions correct. I reviewed the video this is exactly how it was done.

1 Answer

Jhon Villalobos
Jhon Villalobos
7,968 Points

Hi Lisa.

Your assigning two types to this enum, so that's why is wrong.

As you are assigning "model" to the case option, the enum should be String Type. So will be:

enum CodingKeys: String { case model = "model" }

The quiz has blanks to fill in. I am not sure you able to see the quiz, but you have to have both types. class someClass { let model: String }

enum CodingKeys: __, ___ { case ____________ }

submitted answer: enum CodingKeys: String, CodingKey { case model = "model" }