bsm-project/Friendvatars/AppDelegate.swift
2018-11-19 15:09:22 +01:00

13 lines
334 B
Swift

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
}
}