Skip to content

Instantly share code, notes, and snippets.

View perlasivakrishna's full-sized avatar

perlasivakrishna

View GitHub Profile
//
// DropdownAlert.swift
// Pods
//
// Created by Brendan Conron on 5/22/16.
//
//
import UIKit
import pop
@perlasivakrishna
perlasivakrishna / gist:706a577bdd55fe45ae8176d7e4c0d143
Created May 26, 2021 06:43
CoreData + ManagedObject + Codable + Tranformable Entity
import UIKit
import CoreData
@objc(RouteResponse)
public class RouteResponse: NSManagedObject, Codable {
@NSManaged var routeInfo: [Route]!
@NSManaged var routeTimings: [String: [RouteTime]]!
enum CodingKeys: CodingKey {
{
"routeInfo": [
{
"id": "r002",
"name": "k-12",
"source": "Yashwantpur",
"tripDuration": "2hrs",
"destination": "Marathahalli",
"icon": "http://"
},