AppDelegate.swift 650 Bytes
//
//  AppDelegate.swift
//  metaCode
//
//  Created by iOS on 2023/5/30.
//

import UIKit

@main
class AppDelegate: UIResponder, UIApplicationDelegate {
    var window: UIWindow?


    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        
        // Override point for customization after application launch.
        window = UIWindow.init(frame: UIScreen.main.bounds)
        window?.backgroundColor = UIColor.white
        window?.rootViewController = ViewController.init()
        window?.makeKeyAndVisible()
        
        return true
    }


}