22 lines
423 B
Swift
22 lines
423 B
Swift
//
|
|
// AppDelegate.swift
|
|
// iOS Example
|
|
//
|
|
// Created by Dan Shevlyuk on 11/16/16.
|
|
// Copyright © 2016 swift. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
return true
|
|
}
|
|
|
|
}
|
|
|