In Xcode how do I know if my lauch image is working correctly?

后端 未结 3 1914
时光说笑
时光说笑 2021-01-17 12:13

When I run the simulator, the app opens really quickly so it\'s impossible to see the launch image.

3条回答
  •  悲&欢浪女
    2021-01-17 12:21

    Set a breakpoint to the 1st line of your application:didFinishLaunchingWithOptions: delegate method. Or better yet, inside main.

    This will pause the app before showing your user interface and allow you to see the launch screen.

提交回复
热议问题