1

I've worked on this for many hours, but for some reason I can't get launch images to show up on iPhone devices using the asset catalog. The same images will show up on iPad devices and if I switch to not using asset catalog the same images will work on iPhone devices, but not the iPad. I cleaned the folder, deleted the app, and reinstalled it on the iPhone and my iPad devices, but nothing works. I've taken screen shots below. Please help!

Also, my app icons work perfectly using the asset catalogs on all devices and the launch images all work on the iOS simulator.

Screenshot1

enter image description here

Screenshot2

enter image description here

Screenshot3

enter image description here

codercat
  • 22,873
  • 9
  • 61
  • 85

2 Answers2

0

Check for any duplicate image files in the bundle. If two files are there with the same name, then this issue can occcur.

arundevma
  • 933
  • 7
  • 24
  • I've made this search several times and found no duplicates, but I will check again and let you know. Will be about 1230-1am EST before I can get a response back to you. – Gordon R. Snurr III Jan 17 '14 at 04:21
  • No duplicates found. I wish it was that simple. – Gordon R. Snurr III Jan 17 '14 at 05:56
  • Partially. I did the above instructions I found, but I can't get the status bar to show correctly though, so I have it disabled. Still looking for a better solution. I'll post again below this what I did, but from what I can tell iOS 7 launch images are still very buggy as many people have reported these issues. – Gordon R. Snurr III Jan 21 '14 at 10:25
  • Navigate to General tab in your project settings, iPhone Device Orientation section and deselect checkboxes beside Landscape Left and Landscape Right, and select Portrait orientation. Run the app on iPhone 3.5 or 4 iOS 7 simulator with this settings. The app could crash if you have hardcoded Landscape masks somewhere in your app's view controllers, but it does not matter. Put checkmarks back for Landscape Left and Landscape Right, but leave Portrait orientation allowed as well. That is you should allow Portrait and both Landscape orientations for iPhone. – Gordon R. Snurr III Jan 17 at 7:45 – Gordon R. Snurr III Jan 21 '14 at 10:26
  • My application is landscape only. – Gordon R. Snurr III Jan 21 '14 at 10:26
0

This might be silly, but we had the same issue and it turned out that clients had submitted JPG instead of PNG images. Once we found out (because we couldn't open a jpg type with extension png in photoshop) it was an easy fix to simply re-save images as true png.

This will probably by a very minority of you guys having this issue, but thought I'd add it just in case.