Files
CoreStore-JohnEstropia/LegacyDemo/LegacyDemo/AppDelegate.swift
2020-09-19 14:32:43 +09:00

27 lines
527 B
Swift

//
// 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
}
}