Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

On iOS, how come iPhone's Launch Image should include status bar, but iPad's Launch Image should not?

Tags:

ios

iphone

ipad

The Apple Human Interface Guide (HIG) explicitly states that for iPhone Launch images, include the status bar, but for iPad, don't include it. (please see the image at the end of question). (The document revision is as of 2012/3/07).

So I supposed any status bar info (carrier, time, battery) will be automatically cropped by either Xcode or iPhone itself, so that it is not shown to the user.

But why the inconsistency for iPad? For one, Xcode actually could take in an image, and if it sees that it is the full size 1024 x 768, then crop out the status bar region. And are there other reasons? Such as when iPhone or iPad launches an app, the status bar is always shown on one device while the other device won't always show it, and causing the difference in the rule?


Quoted: (displayed as an image) enter image description here

like image 734
nonopolarity Avatar asked Aug 17 '12 10:08

nonopolarity


1 Answers

On iPhone/iPod, applications can overlap the status bar. iPad is assumed to have big enough screen for applications not to need to overlap the status bar.

like image 139
alm Avatar answered Sep 22 '22 23:09

alm