Архитектурный шаблон "Мрак в моделях" на нескольких языках и платформах
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.

31 lines
652B

  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. let vc = UIViewController()
  12. vc.view.backgroundColor = .white
  13. window = UIWindow(frame: UIScreen.main.bounds)
  14. window?.rootViewController = vc
  15. window?.makeKeyAndVisible()
  16. return true
  17. }
  18. }
  19. extension AppDelegate {
  20. private func setupMemory() {
  21. /*
  22. let w = Converter.World(converterModel)
  23. converterS = Converter.Service(w)
  24. */
  25. }
  26. }