0

For iPhone4-5, we have to have 3 default images to be loaded by the device

Default.png
Default@2x.png  and
Default-568h@2x.png

IS there any naming convention for iPhone6 and 6 plus?

Gaurav Borole
  • 796
  • 2
  • 13
  • 32
  • Until now I've only got it working with [asset catalog](https://developer.apple.com/library/ios/recipes/xcode_help-image_catalog-1.0/Recipe.html). – rckoenes Sep 23 '14 at 09:04
  • 1
    See http://stackoverflow.com/questions/25754942/how-to-enable-native-resolution-for-apps-on-iphone-6-and-6-plus - the answer by William Jockusch shows how to add the images without using the Launch Images asset catalog. – rmaddy Sep 23 '14 at 15:33

1 Answers1

5

Instead of relying on filenames, you should use the asset catalog to provide default images and app icons.

There is an extensive guide by Apple about this: https://developer.apple.com/library/ios/recipes/xcode_help-image_catalog-1.0/StoringAppIconsandLaunchImagesinanAssetCatalog/StoringAppIconsandLaunchImagesinanAssetCatalog.html

Sebastian Wramba
  • 10,087
  • 8
  • 41
  • 58
  • This page has everything about Asset Catalogs: https://developer.apple.com/library/ios/recipes/xcode_help-image_catalog-1.0/Recipe.html#//apple_ref/doc/uid/TP40013303-CH1-SW1 – Sebastian Wramba Oct 28 '14 at 14:09