27 lines
596 B
Swift
27 lines
596 B
Swift
//
|
|
// AppDelegate.swift
|
|
// WallpaperHD_Live
|
|
//
|
|
// Created by 忆海16 on 2024/7/22.
|
|
//
|
|
|
|
import UIKit
|
|
import IQKeyboardManagerSwift
|
|
@main
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
IQKeyboardManager.shared.enable = true
|
|
window = UIWindow(frame: UIScreen.main.bounds)
|
|
WP_TabbarCommon.TabBarController()
|
|
|
|
self.window?.makeKeyAndVisible()
|
|
return true
|
|
}
|
|
|
|
|
|
}
|
|
|