Архитектурный шаблон "Мрак в моделях" на нескольких языках и платформах
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
432B

  1. import UIKit
  2. @main
  3. class AppDelegate: UIResponder, UIApplicationDelegate {
  4. var window: UIWindow?
  5. }
  6. extension AppDelegate {
  7. func application(
  8. _ application: UIApplication,
  9. didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
  10. ) -> Bool {
  11. window = UIWindow(frame: UIScreen.main.bounds)
  12. window?.rootViewController = Main.VC()
  13. window?.makeKeyAndVisible()
  14. return true
  15. }
  16. }