23 lines
626 B
Swift
23 lines
626 B
Swift
//
|
|
// AppDelegate.swift
|
|
// PanModal
|
|
//
|
|
// Created by Stephen Sowole on 10/9/18.
|
|
// Copyright © 2018 PanModal. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
window = UIWindow(frame: UIScreen.main.bounds)
|
|
window?.rootViewController = UINavigationController(rootViewController: SampleViewController())
|
|
window?.makeKeyAndVisible()
|
|
return true
|
|
}
|
|
}
|