You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
앱이 처음 실행될 때, 필요한 시스템적 처리를 모두 끝내고 메인화면을 표시하기 직전에 호출
앱 시작 -> 시작화면 표시 -> 이 함수 호출 -> 앱의 첫 화면 표시
런치스크린 화면 5초간 표시하기
func application(_ application:UIApplication, didFinishLaunchingWithOptions launchOptions:[UIApplication.LaunchOptionsKey:Any]?)->Bool{
// Override point for customization after application launch.
sleep(5)returntrue}
sleep(5): 5초간 앱을 잠들게 한다. 괄호안에 있는 숫자는 초 단위
The text was updated successfully, but these errors were encountered:
# 런치스크린 Launch Screen
🍯 런치스크린 표시 시간 제어하기
AppDelegate.swift
application(_ application: UIApplication, didFinishLaunchingWithOptions:)
sleep(5)
: 5초간 앱을 잠들게 한다. 괄호안에 있는 숫자는 초 단위The text was updated successfully, but these errors were encountered: