Архитектурный шаблон "Мрак в моделях" на нескольких языках и платформах
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AppDelegate.swift 434B

1 년 전
1 년 전
1 년 전
12345678910111213141516171819
  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.Core()
  13. window?.makeKeyAndVisible()
  14. return true
  15. }
  16. }