Files
yingmeng-ios-switf/yinmeng-ios/AppDelegate.swift
2024-02-21 21:30:13 +08:00

24 lines
558 B
Swift

//
// AppDelegate.swift
// yinmeng-ios
//
// Created by MaiMang on 2024/1/30.
//
import UIKit
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
UIApplication.shared.applicationIconBadgeNumber = 0
self.window = UIWindow.init(frame: UIScreen.main.bounds)
self.window?.backgroundColor = UIColor.white
self.window?.rootViewController = AuthLoginVC()
return true
}
}