ios - Separate launch images for iPad? -
i'm working on update bring iphone app ipad. (to make universal app) have following launch images:
default.png - 320 x 480 px default@2x.png - 640 x 960 px default-568h@2x.png - 640 x 1136 px default-667h@2x.png - 750 x 1334 px default-736h@3x.png - 1242 x 2208 px
do need add separate launch images ipad? app should support devices ios 8 , portrait mode only.
yes, need add separate launch images ipad.
support portrait mode need add 2 images:
1. default~ipad.png
1024x768 px
2. default@2x~ipad.png
2048x1536 px
also can use alternative way launch images: launchscreen.xib
(xcode -> file -> new -> file... -> user interface -> launchscreen).
it's suitable way when launch screen can built in interface builder. allow avoid storing multiple launch images in project, makes app thinner.
Comments
Post a Comment