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.
            Asked
            
        
        
            Active
            
        
            Viewed 814 times
        
    1 Answers
3
            
            
        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.