wallpaperAI/wallpaper_BProject/AppDelegate.swift
2024-09-03 09:42:18 +08:00

28 lines
647 B
Swift

//
// AppDelegate.swift
// wallpaper_BProject
//
// Created by 16 on 2024/8/28.
//
import UIKit
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
self.window?.frame = UIScreen.main.bounds
// let vc = NW_LauncVC()
// self.window?.rootViewController = vc
let vc = NW_RootTabBarVC()
window?.rootViewController = NW_RootNAVC(rootViewController: vc)
window?.makeKeyAndVisible()
return true
}
}