tags:

views:

28

answers:

1

I have a splash screen in my app which is working fine other than the fact that the image seems to stretch slightly vertically when loaded.

The image is 320 x 460.

Any idea why the stretch is occurring?

+4  A: 
KennyTM
Damn, beat me to it.
esqew
As an addendum; the difference is probably the status bar. The bar is displayed over the top of the splash screen, so you may just need a 20 pixel blank space at the top of the image to account for it.
Nicholas M T Elliott
320x460 should work, but only if the status bar is visible at application launch. If you set `UIStatusBarHidden` in your `Info.plist`, then you’ll need a 320x480 version.
Jeff Kelley
@Jeff, I find it easier to just use a 320x480 image, since it always works (i.e. you can change the status bar style without things breaking). Of course, things will break if the double-height status bar is showing (e.g. you're in a call).
tc.
worked like a champ :)
butchcowboy