Reputation: 4764
I read that Apple prefers the launch image to be similar to your initial app screen to provide the user with the illusion of "instant on", and that somehow the status bar of the app while loading is hidden so that there is no conflict in time.
I am using a screenshot of the app as my launch image.
However, the status bar is not hidden at loading. Instead, it is overwriting the image, which is okay for the static portion of the status bar which exactly matches the screenshot. However, the time of the status bar is superimposed on the time in the screenshot, creating a blur.
Is it best practice to remove the time from the screenshot in Photoshop, or is there a way to hide the status bar at launch? I've found suggestions to alter my plist file, but they seem a bit funky.
What is the best practice?
Upvotes: 0
Views: 85
Reputation: 3489
Launch image should not have the status bar on it because iOS actual status bar will be shown while the app is launching.
Also if you are using app screenshots, launch image should not contain any data or details that are shown to the user when the app is running.
Best practice is have something like a "background" that will be filled with actual data when the app is launched, giving the user the impression that the app launches faster.
See this example from Instagram app:
Upvotes: 2