Swift设置APP启动页的时长
2022-08-23 本文已影响0人
Antlers777
AppDelegate
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
Thread.sleep(forTimeInterval: 4.0) // 添加这行代码
return true
}