bsm-project/Friendvatars/AppDelegate.swift

13 lines
334 B
Swift
Raw Permalink Normal View History

2018-11-19 14:31:37 +01:00
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
AppController.shared.show(in: UIWindow(frame: UIScreen.main.bounds))
return true
}
}