Launch Screen เป็นส่วนที่จะถูกนำมาใช้ก่อนที่แอพพลิเคชั่น iOS ของเราจะพร้อมทำงาน
ในบางครั้งเราอาจจะต้องการควบคุมให้ LuanchScreen อยู่นานอีกนิด ก็สามารถทำได้โดยใช้โค้ดในไฟล์ AppDelegate.swift
ครับ
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
RunLoop.current.run(until: NSDate(timeIntervalSinceNow:1) as Date)
return true
}
อ้างอิง – How can I delay splash launch screen programatically in Swift Xcode iOS