Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

xcode

ios

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

like image 542
megashigger Avatar asked Sep 18 '15 18:09

megashigger


2 Answers

  1. Launch iOS simulator
  2. Enable slow animations ( + T)
  3. Launch your app.
  4. Blink slowly
like image 60
slxl Avatar answered Oct 19 '22 08:10

slxl


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.

like image 20
rmaddy Avatar answered Oct 19 '22 06:10

rmaddy