This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"routeInfo": [ | |
{ | |
"id": "r002", | |
"name": "k-12", | |
"source": "Yashwantpur", | |
"tripDuration": "2hrs", | |
"destination": "Marathahalli", | |
"icon": "http://" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import CoreData | |
@objc(RouteResponse) | |
public class RouteResponse: NSManagedObject, Codable { | |
@NSManaged var routeInfo: [Route]! | |
@NSManaged var routeTimings: [String: [RouteTime]]! | |
enum CodingKeys: CodingKey { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// DropdownAlert.swift | |
// Pods | |
// | |
// Created by Brendan Conron on 5/22/16. | |
// | |
// | |
import UIKit | |
import pop |