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

Aananya Vyas
Aananya Vyas
20,157 Points

having trouble in the 2nd exercise in the final stage of weather app

Aananya Vyas
Aananya Vyas
20,157 Points

this was the title ofthe question- Fill in the blanks to create a decoder and convert from JSON to an instance of book

3 Answers

So you need String raw values, to conform to the protocol CodingKey, and then type in your one case.

import Foundation

struct Vehicle: Codable {
    let model: String

    enum CodingKeys: String, CodingKey {
        case model
    }
}
Aananya Vyas
Aananya Vyas
20,157 Points

Hey, Thanks for taking out the time the questions must have jumbled up, my bad! I included the question below :D My apologies again!

  1. Conform Book to Codable
  2. Create and constant of JSONDecoder
  3. Decode using Book
import Foundation

struct Book: Codable {
    let name: String
}

let json = Data()
let decoder = JSONDecoder()

do {
    let book = try decoder.decode(Book.self, from: json)
} catch let error {
    print(error)
}
Aananya Vyas
Aananya Vyas
20,157 Points

thank you soo much! have a great day cheers! :D

Aananya Vyas
Aananya Vyas
20,157 Points

This is the question

import Foundation

struct Book: = //_______ {
    let name: String
}

let json = Data()
let decoder = //______

do {
    let book = try decoder.decode(//________, from: json)
} catch let error {
    print(error)
}