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 trialAananya Vyas
20,157 Pointshaving trouble in the 2nd exercise in the final stage of weather app
3 Answers
Brandon Mahoney
iOS Development with Swift Techdegree Graduate 30,149 PointsSo 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
20,157 PointsHey, Thanks for taking out the time the questions must have jumbled up, my bad! I included the question below :D My apologies again!
Brandon Mahoney
iOS Development with Swift Techdegree Graduate 30,149 Points- Conform Book to Codable
- Create and constant of JSONDecoder
- 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
20,157 Pointsthank you soo much! have a great day cheers! :D
Aananya Vyas
20,157 PointsThis 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)
}
Aananya Vyas
20,157 PointsAananya Vyas
20,157 Pointsthis was the title ofthe question- Fill in the blanks to create a decoder and convert from JSON to an instance of book