views:

50

answers:

1

Hi experts, Can we add an view to the splash screen in iphone?. I have a default.png file in my resources directory but when the splash screen pops up i want to display an text on the splash screen image is it possible in code.

+3  A: 

No. Unless you apply some symlink tricks (only possible for 2.x), Default.png cannot be changed.

And the Default.png is displayed by SpringBoard before your app's code starts to run, so this is impossible.

You can construct a customized splash screen in your -applicationDidFinishLaunching: though.

KennyTM