Проверка шаблона шины для iOS
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

28 строки
794B

  1. import UIKit
  2. @UIApplicationMain
  3. class AppDelegate: UIResponder, UIApplicationDelegate
  4. {
  5. var window: UIWindow?
  6. func application(
  7. _ application: UIApplication,
  8. didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
  9. ) -> Bool {
  10. window = UIWindow(frame: UIScreen.main.bounds)
  11. let vc = UIViewController()
  12. addSwiftUIViewAsChild(swiftUIView: V(), parent: vc.view)
  13. vc.view.backgroundColor = .gray
  14. window?.rootViewController = vc
  15. window?.backgroundColor = UIColor.white
  16. window?.makeKeyAndVisible()
  17. Bus.processSyncG(
  18. MeetupId.shouldFormat, MeetupId.K.meetupIdTextUI.rawValue, MeetupId.K.meetupIdTextApp.rawValue
  19. )
  20. return true
  21. }
  22. }