How to suppress a missing warning about starting a default image in Xcode 4.5?

Xcode 4.5 gives a “Retina 4 support” warning if you do not include the default “widescreen” startup image as part of your project.

My problem is that if I do not add an image, my application works fine on iPhone 5, and the OS adds a little box to fill in unused real estate, but I have a warning that I can’t get rid of. If I add an image, the application uses full screen, which is a problem (animations that play or start and partially stop on the screen are now displayed on the screen, etc.).

So my question is:

  • Is there any way to suppress the warning "Retina 4 support"?
  • If there is no way to add a default image while keeping the application in non widescreen mode with a letter designation?
+6
source share
1 answer

Does this help answer your question? It looks like:

Missing Retina 4 launch image. How to ignore this error?

0
source

All Articles