Friday, February 14, 2020

Json Get Request Object With Codable

//
//  HomeViewController.swift
//  JsonText
//
//  Created by Mohammad Azmal Hossain on 2/15/20.
//  Copyright © 2020 Mohammad Azmal Hossain. All rights reserved.
//

import Foundation
import UIKit

/*
{
   "id":1,
   "name":"Instagram Firebase",
   "link":"https://www.letsbuildthatapp.com/course/instagram-firebase",
   "imageUrl":"https://letsbuildthatapp-videos.s3-us-west-2.amazonaws.com/04782e30-d72a-4917-9d7a-c862226e0a93",
   "number_of_lessons":49
}
*/


// MARK: - CourseM
struct CourseM: Codable {
    let id: Int?
    let name: String?
    let link, imageURL: String?
    let numberOfLessons: Int?
    
    enum CodingKeys: String, CodingKey {
        case id, name, link
        case imageURL = "imageUrl"
        case numberOfLessons = "number_of_lessons"
    }
}





class HomeViewController: UIViewController {
    
    var course = String()
    
    
    @IBOutlet weak var homeTableView: UITableView!
    
    
    func getRequestApiForCourse(){
        
        let stringUrl = "http://api.letsbuildthatapp.com/jsondecodable/course"
        
        let urlObj = URL(string: stringUrl)
        
        guard let urlUnWrap = urlObj else {
            return
        }
        
        let task = URLSession.shared.dataTask(with: urlUnWrap){(data, response, error) in
            
            guard let dataG = data else {
                return
            }
            
            do{
                let json = try JSONDecoder().decode(CourseM.self, from: dataG)
                
                print("azmal json = \(json)")
                
                self.course = json.name ?? ""
                
                
            } catch let errorJson {
                
                print("azmal error = \(errorJson)")
            }
            
            DispatchQueue.main.async {
                self.homeTableView.reloadData()
            }
            
            
        }
        
        task.resume()
        
    }
    
    
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
        getRequestApiForCourse()
        
        
        setup()
        
    }
    
    func setup(){
        
        let nib = UINib(nibName: "HomeTableViewCell", bundle: nil)
        homeTableView.register(nib, forCellReuseIdentifier: "HomeTableViewCell")
        
        homeTableView.delegate = self
        homeTableView.dataSource = self
    }
    
}

extension HomeViewController: UITableViewDelegate, UITableViewDataSource{
    
    
    
    func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }
    
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 5
    }
    
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        
        let cell = tableView.dequeueReusableCell(withIdentifier: "HomeTableViewCell", for: indexPath) as! HomeTableViewCell
        
        cell.titleLabel.text = self.course
        
        return cell
        
    }
    

}


No comments:

Post a Comment