Gifu/Demo/Source/AppDelegate.swift

12 lines
309 B
Swift
Raw Normal View History

2014-09-10 19:28:19 +00:00
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
2018-09-19 11:10:33 +00:00
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
2014-09-10 19:28:19 +00:00
return true
}
}