AppDelegate.swift 490 B

123456789101112131415161718192021222324
  1. //
  2. // AppDelegate.swift
  3. // conversejs
  4. //
  5. // Created by Sergey Tarasov on 11.10.2022.
  6. //
  7. import UIKit
  8. @main
  9. class AppDelegate: UIResponder, UIApplicationDelegate {
  10. var window: UIWindow?
  11. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  12. window = UIWindow(frame: UIScreen.main.bounds)
  13. window?.rootViewController = WebViewController()
  14. window?.makeKeyAndVisible()
  15. return true
  16. }
  17. }