Milesh
Milesh

Reputation: 271

Generate splash

I want to generate splash before my tabbar based application starts. Please help me out....

Upvotes: 0

Views: 212

Answers (2)

Antzi
Antzi

Reputation: 13414

You cannot create an animated splash screen on iOS. You MUST start by an image.

However what you can do is

  1. Setup a launch image
  2. display a view controller that animate then move on to your application

One common practice is to setup a launch image that is the first image of your animation. this way the user won't see the difference between the static and animated parts of your splash screen.

Upvotes: 0

Björn Marschollek
Björn Marschollek

Reputation: 9999

Short version: Create your splash image and name it Default.png.

A tutorial can be found here.

Upvotes: 1

Related Questions