Making the launch image display longer xcode

后端 未结 8 2042
囚心锁ツ
囚心锁ツ 2020-12-14 10:04

I need help with launch images on iphone. In the project settings on xcode theres an option to add launch images. I added it and it displays for 2 seconds... I want it to be

8条回答
  •  旧时难觅i
    2020-12-14 10:52

    In Swift

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
            Thread.sleep(forTimeInterval: 2.0)
            return true
    }
    

提交回复
热议问题