Jos
Jos

Reputation: 2471

Animation/Video as launch images ios

Does anyone know if it's possible to show a video or an animation instead of a regular launch image in ios? The app's like D&G and Mango did this but I can't seem to find how. Is this maybe not an actual launch images, but a video which in triggered in the didfinishlauncingwithoptions.

Thnx!

Upvotes: 3

Views: 3615

Answers (1)

rckoenes
rckoenes

Reputation: 69499

Wel after the app hit the - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions you can setup an animation. There is no way to do this before this point. The os just looks for the Default.png in the bundle and displays it als long as your app is starting up. (read not returned from the above mentions method).

Upvotes: 3

Related Questions