I'm wondering if anyone else has run into this problem. I read a few threads here about the proper naming and adding the key in the plist. I am able to get this working in the simulator for both the iPhone and iPad and on the actual iPhone device but not the iPad.
Here is what I have:
iPhoneLaunchImage~iPhone.png
iPhoneLaunchImage@2x~iPhone.png
iPadLaunchImage-Portrait~iPad.png
iPadLaunchImage-Portrait@2x~iPad.png
iPadLaunchImage-Landscape~iPad.png
iPadLaunchImage-Landscape@2x~iPad.png
In my MyApp-Info.plist, here is what I have:
<key>UILaunchImageFile~ipad</key>
<array>
<string>iPadLaunchImage-Portrait~iPad.png</string>
<string>iPadLaunchImage-Portrait@2x~iPad.png</string>
<string>iPadLaunchImage-Landscape~iPad.png</string>
<string>iPadLaunchImage-Landscape@2x~iPad.png</string>
</array>
<key>UILaunchImageFile~iphone</key>
<string>iPhoneLaunchImage~iPhone.png</string>
I also tried doing this by only using a string value for the iPad instead of an array and only put
<string>iPadLaunchImage</string>
and again it worked in the simulator but not on the actual iPad.
Any help appreciated.