Проверка шаблона шины для iOS

24 lines
668B

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