
How can i delay the splash screen?

How to delay splash screen in iPhone/iPad/ Objective C
Splash scree is the very first screen that run while application launch. By default it's disappears within seconds.. To delay it " NSThread " can be used.
Syntax for NSThread..
[NSThread sleepForTimeInterval:(NSTimeInterval)];
NSThread Code that can be put inside applicationDidFinishLaunching method to delay the splash screen.
For example, display default.png for 5 seconds.
- (void) applicationDidFinishLaunching:(UIApplication*)application
{
[NSThread sleepForTimeInterval:5.0];
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.