The way to parse JSON in Swift utilizing Codable protocol?

The way to parse JSON in Swift utilizing Codable protocol?



· 1 min learn


On this Swift tutorial, I might like to present you an instance about getting and parsing JSON knowledge utilizing URLSession and Codable protocol.

Dependencies

To start with only a few phrases about dependencies. From Swift 4 you don’t want any dependency to parse JSON knowledge, as a result of there are built-in protocols to care for every part. In case you are nonetheless utilizing some sort of Third-party you must undoubtedly ditch it for the sake of simplicity. By the way in which earlier than you add any exterior dependency into your mission, please assume twice. 🤔

Networking

In case your job is just to load some sort of JSON doc by way of HTTP from across the net, – shock – you gained’t want Alamofire in any respect. You should utilize the built-in URLSession class to make the request, and get again every part that you simply’ll want. The Basis networking stack is already a fancy and really helpful stack, don’t make issues much more difficult with additional layers.

JSON parsing

Now, after the quick intro, let’s dive in and get some actual pretend JSON knowledge from the JSONPlaceholder net service. I’m going to position the entire thing proper right here, you possibly can choose it, copy and paste right into a Swift playground file.

import Basis
import PlaygroundSupport

PlaygroundPage.present.needsIndefiniteExecution = true

struct Submit: Codable {

    enum CodingKeys: String, CodingKey {
        case id
        case title
        case physique
        case userIdentifier = "userId"
    }

    let id: Int
    let title: String
    let physique: String
    let userIdentifier: Int
}

let url = URL(string: "https://jsonplaceholder.typicode.com/posts")!

URLSession.shared.dataTask(with: url) { knowledge, response, error in
    if let error = error {
        print("Error: (error.localizedDescription)")
        PlaygroundPage.present.finishExecution()
    }
    guard 
        let httpResponse = response as? HTTPURLResponse, 
        httpResponse.statusCode == 200 
    else {
        print("Error: invalid HTTP response code")
        PlaygroundPage.present.finishExecution()
    }
    guard let knowledge = knowledge else {
        print("Error: lacking knowledge")
        PlaygroundPage.present.finishExecution()
    }

    // be happy to uncomment this for debugging knowledge
    // print(String(knowledge: knowledge, encoding: .utf8))

    do {
        let decoder = JSONDecoder()
        let posts = strive decoder.decode([Post].self, from: knowledge)

        print(posts.map { $0.title })
        PlaygroundPage.present.finishExecution()
    }
    catch {
        print("Error: (error.localizedDescription)")
        PlaygroundPage.present.finishExecution()
    }
}.resume()

As you possibly can see downloading and parsing JSON from the net is a very easy job. This entire code snippet is round 50 traces of code. In fact it’s only a proof of idea, but it surely works and also you don’t want any dependency. It’s pure Swift and Basis.

NOTE: To save some typing, you can too generate the ultimate objects instantly from the JSON construction with these superb Xcode extensions.

The Codable protocol – which is definitely a compound typealias from Encodable & Decodable protocols – makes the method of parsing JSON knowledge in Swift magical. 💫

Associated posts


· 6 min learn


Study every part about logical varieties and the Boolean algebra utilizing the Swift programming language and a few fundamental math.


· 4 min learn


Learn to talk with API endpoints utilizing the model new SwiftHttp library, together with async / await help.


· 9 min learn


The one and solely tutorial that you will ever have to study larger order capabilities like: map, flatMap, compactMap, scale back, filter and extra.


· 5 min learn


Study the very fundamentals about protocols, existentials, opaque varieties and the way they’re associated to generic programming in Swift.

author avatar
roosho Senior Engineer (Technical Services)
I am Rakib Raihan RooSho, Jack of all IT Trades. You got it right. Good for nothing. I try a lot of things and fail more than that. That's how I learn. Whenever I succeed, I note that in my cookbook. Eventually, that became my blog. 
rooshohttps://www.roosho.com
I am Rakib Raihan RooSho, Jack of all IT Trades. You got it right. Good for nothing. I try a lot of things and fail more than that. That's how I learn. Whenever I succeed, I note that in my cookbook. Eventually, that became my blog. 

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here


Latest Articles

author avatar
roosho Senior Engineer (Technical Services)
I am Rakib Raihan RooSho, Jack of all IT Trades. You got it right. Good for nothing. I try a lot of things and fail more than that. That's how I learn. Whenever I succeed, I note that in my cookbook. Eventually, that became my blog.