TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

How to read JSON with Swift?

Forums > Swift

How to read JSON with Swift?

I have looked at a lot of places but I cannot adapt to my case

  • The JSON information is in an URL. For instance: https://www.example.com
  • It is nested. For instance: {"eur":{"usd":80}}
  • There is nothing else, there is not a list of values to iterate

3      

Any of the hundreds of Codable tutorials available on the web should work for this with some adaptation for your specific case.

But the basic idea is this:

import Foundation

struct Rate: Decodable {
    struct USConversion: Decodable {
        let usd: Int
    }

    let eur: USConversion
}

//for purposes of demonstration only
//in your app, you would get this from an API call
let moneyConversion = """
{"eur": {"usd": 80}}
""".data(using: .utf8)!

let jsonDecoder = JSONDecoder()
do {
    let money = try jsonDecoder.decode(Rate.self, from: moneyConversion)
    print(money)
} catch {
    print(error)
}

3      

Thank you!

3      

I can recommend https://quicktype.io to get an initial struct going that can receive your data.

4      

Hacking with Swift is sponsored by Blaze.

SPONSORED Still waiting on your CI build? Speed it up ~3x with Blaze - change one line, pay less, keep your existing GitHub workflows. First 25 HWS readers to use code HACKING at checkout get 50% off the first year. Try it now for free!

Reserve your spot now

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.