2024-02-21 21:30:13 +08:00
|
|
|
//
|
|
|
|
// 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
|
2024-02-22 19:59:38 +08:00
|
|
|
self.window?.rootViewController = BaseNavigationViewController(rootViewController:AuthLoginVC())
|
2024-02-21 21:30:13 +08:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|