spiegel-keyman/ios/samples/KMSample1/KMSample1/AppDelegate.swift
2017-10-06 09:54:09 +07:00

20 lines
522 B
Swift

//
// AppDelegate.swift
// KMSample1
//
// Created by Gabriel Wong on 2017-10-06.
// Copyright © 2017 SIL International. All rights reserved.
//
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]? = nil) -> Bool {
// Override point for customization after application launch.
return true
}
}