tags:

views:

99

answers:

2

I have use splash screen in my application.But splash screen appears only when application is run from xcode and don not appears when launch directly from simulator.

Please help me.

Thanks.

A: 

Its difficult to advice without further information, but this sounds like your app is taking longer to load when run from XCode since the debugger will be attaching at bootup etc, whereas launching from the simulator itself will be a quicker boot - perhaps the splash screen isn't staying on screen long enough for you to see it?

If you have implemented an additional splash screen to the standard boot screens 'defaultXXX.png', could you elaborate on how you have coded it?

davbryn
Hi,thanks for your help.Actually i have added splash image on main.xib file through delegate in applicationDidFinishLaunching method.But splash screen comes only when app bouts up from xcode and does not come when bouts up from simulator.Thanks.
1988
A: 

Which SDK are you using? If you use 4, probably your issue is connected with multitasking. In simulator with iOS4 when you launch your app you actually restore your app not lauch, if app was previously opened. When you start your application from XCode it "copies" your app to the simulator and starts "new instance".

marcin.walus