简体   繁体   中英

Can we use the sequences of 3 launch images in iphone/ipad

我们可以在iphone / ipad中使用3个启动图像的序列吗?

No. A launch image is just one image (for that particular device/scale/orientation).

We show an animation in one of our apps, which starts immediately after launch (on the root view controller).

Technically not. But you can show additional images yourself after the app finished loading. The Default.png is used to display something (instead of a black screen) while your app loads.

Once it finished loading, it is immediately replaced with your main window's content. Then you can add UIImageViews or UIViewControllers to display anything you would like. But at this point your app is done loading and it would be a waste of time to show anything else, than your app's live content.

You cannot use sequence of images in default launch.

But you can do with the customise the code on view to change the images sequentially with a timing difference once the default image is loaded.

No. you can use only one image of different type of device like normal size,3.5 inch and 4 inch

You can add a new viewcontroller which will display the different type of splash screen image in the application didFinishLoading.

This way you display the more splash screen display a bit longer.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM