Gifu/Demo/Source/AppDelegate.swift

12 lines
308 B
Swift
Raw Normal View History

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