Meera
Meera

Reputation: 1031

Splash icon slighlty varies after app launch

I have an application that needs to work on iOS6 and 7. I also have the required images for the splash. I have been facing a issue which I could not figure out how it occurs and the issue is when the splash screen loads,the initial image slightly changes after few seconds. Changes in the sense stretches a bit. This happens in landscape. Could someone point me out what can be the issue? Thanks in advance

Also note that I am setting the image according to orientation initially and on orientation change too. But before even the method for setting splash image is hit, there is an image already present on the screen. Where did this image come from? I even removed Launch image option from app's general settings but it still seems to assign an image by default !

Splash Landscape = 1024x768 and its @2x = 2048x1536 Splash Portrait = 768x1024 and its @2x = 1536x2048

Upvotes: 2

Views: 133

Answers (2)

Retro
Retro

Reputation: 4005

I think you are missing the key point that landing image are 20px short from landing mode

Splash Landscape = 1024x768 Not correct

Splash Landscape = 1004x768 Correct

enter image description here

Upvotes: 1

Meera
Meera

Reputation: 1031

I found what was going wrong. I had images named as Default.png and [email protected] which were portrait images in my resource folder. I deleted and removed their references but the issue persisted. So I removed them from the project and renamed the required images, reset the simulator and run. Got it fixed. I guess the Xcode 5 automatically takes the images by default from resources and loads in the Launch Images in general tab. I even removed Launch Image set in general tab.

Upvotes: 0

Related Questions