seenu
seenu

Reputation: 131

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

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

Upvotes: 0

Views: 54

Answers (4)

codercat
codercat

Reputation: 23301

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.

Upvotes: 0

Prashanth
Prashanth

Reputation: 463

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.

Upvotes: 0

DrummerB
DrummerB

Reputation: 40221

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.

Upvotes: 0

Marcus Adams
Marcus Adams

Reputation: 53880

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).

Upvotes: 2

Related Questions