Increase default.png's time on screen

iPhone SDK Tips & Tricks

go into your app delegate's implementation file (.m) and right underneath the following code:

- (void)applicationDidFinishLaunching:(UIApplication *)application
{
sleep(x);
...
}


"x" is the number of seconds you want to display the default screen for.

Or:

[NSThread sleepForTimeInterval:1.0];