tags:

views:

76

answers:

2

Is it possible to programmatically change the Default.png launch image?

For example, could I replace it by an other image that fits better? My app has a tab bar and every tab has a very different screen, and I want to recover to that particular tab after a hard launch from scratch when the app got terminated in the background.

+8  A: 

No.

The image Default.png is part of the bundle of your app, and you can only read this folder, you can't modify it. There is no API to specify a different launch image.

Guillaume
+3  A: 

perhaps an idea would be for your default to be a blank "view" along with the tab bar controller at the bottom. This goes along the lines of Apples HIG.

Jesse Naugher
doesn't work with iOS 4+. You never know how your app will look after launch.
dontWatchMyProfile
When your app is launched, you always know how it will look. You're confusing launch with fast app switching, where your app is activated. There is an API for changing the image that is shown before your app is activated.
lucius