Can we add UILabel to splash screen in iphone?
Can we add an view to the splash screen in iphone?. I have a default.png file in my resources directory b开发者_运维问答ut when the splash screen pops up i want to display an text on the splash screen image is it possible in code.
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.
精彩评论