// // AppDelegate.swift // LegacyDemo // // Created by John Rommel Estropia on 2015/05/02. // Copyright © 2018 John Rommel Estropia. All rights reserved. // import UIKit // MARK: - AppDelegate @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { // MARK: UIApplicationDelegate var window: UIWindow? func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool { return true } }