0

I am working on the latest xcode i.e. version 5.0.1. I have set the launch images for both iphone 4 and iphone 5. Xcode renames the images as Default (for iPhone 4) and Default~iphone (for iPhone 5). But when i run the application on 3.5 inch simulator, it shows the launch image for iphone 5. I have tried clean build but that did not solve my problem. How can i resolve my issue?

Hassan Zaheer
  • 1,361
  • 2
  • 20
  • 34

1 Answers1

1

Use asset catalogs (very easy to enable, there is an option next to the placeholder you set the default images) and add the images to the asset catalog. The issue may be that you have not included non-retina 3.5 inch images and you run the non-retina 3.5" simulator.

(Asset catalogs are features of Xcode 5 they do not depend on the SDK, so you can use them and build with older SDKs).

Nikos M.
  • 13,685
  • 4
  • 47
  • 61