123456789101112131415161718192021222324 |
- //
- // AppDelegate.swift
- // conversejs
- //
- // Created by Sergey Tarasov on 11.10.2022.
- //
- import UIKit
- @main
- class AppDelegate: UIResponder, UIApplicationDelegate {
- var window: UIWindow?
- func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
- window = UIWindow(frame: UIScreen.main.bounds)
- window?.rootViewController = WebViewController()
- window?.makeKeyAndVisible()
-
- return true
- }
- }
|