앱 시작화면 만들기

  • 앱을 실행하면 항상 시작화면을 볼 수 있다.
  • swift에는 따로 이런 기능이 존재한다.

  • 바로 LaunchScreen 이다.

image

  • 아래와 같이 Label을 넣거나 다양하게 꾸밀 수 있다.

image

  • 하지만 실행시 너무 화면이 빠르게 지나간다.
  • AppDelegate를 수정하면 된다.

  • 수정본
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        sleep(5)
        // Override point for customization after application launch.
        return true
    }

Jul-21-2021 13-02-33