views:

33

answers:

2

Hey all, I've created a loading/splash screen that loads at the beginning of my app, just simply showing the company name. It works great on the simulator, but for some reason I just get a black screen when I load the game on my itouch. Any Ideas? I use the sleep(5); method of creating a loading screen.

+3  A: 

Just call the picture "Default.png" and it will show when loading. :)

Thomas Clayson
There we go! Thanks, I feel pretty stupid right now. I knew that it did it automatically, but I thought sleep would show it longer, not mess it up.
XenElement
A: 

A better idea than calling sleep would be to present your splash screen as a subview of the root view. When you are ready to dismiss the splash screen use CATransition to fade out your splash screen.

Convolution