up vote 9 down vote favorite
21
share [g+] share [fb]

How can I display a splash screen for a longer period of time than the default time on an iPhone?

link|improve this question
feedback

12 Answers

The simplest way to do this is to create a UIImageView who's image is your Default.png. In your applicationDidFinishLaunching: method, add that image view to your window, and hide it when you'd like your splash screen to go away.

link|improve this answer
I just wonder why everyone says exactly "Default.png". What is the point? – efeyc Nov 15 '11 at 7:52
Because apple recognize default image by default if its name is default.png – Veer Nov 24 '11 at 16:49
feedback

Read the Apple iPhone Human Interface Guidelines (HIG). The "splash screen" isn't supposed to be for branding or displaying a logo, it's supposed to look like the default condition of the app so it appears to start up quickly.

Making it stay there for longer would be a violation of the HIG.

link|improve this answer
22  
This doesn't answer the question at all. The questions asked is "how?", not "should I?". – korona Feb 16 '09 at 14:05
22  
Sometimes "don't do it" is the best answer to "how". – Paul Tomblin Feb 16 '09 at 14:07
6  
For reference I do agree that you shouldn't do this, but I still disagree with this way of answering. I'll agree to disagree ;) – korona Feb 16 '09 at 15:27
2  
So, @korona, how do you tell somebody that what they're asking how to do is something that they really, really shouldn't do other than answering the question? – Paul Tomblin Feb 16 '09 at 15:37
12  
@Paul Tomblin: I understand your point, but it really is beside the point. I think a friendly warning coupled with a "However, if you really want to do this, ..." response might be the best approach. Thoughts? – LucasTizma May 5 '09 at 14:42
show 5 more comments
feedback

I needed to do this to block showing a table view until the data was loaded over the network. I used a variation of one I found here:

http://michael.burford.net/2008/11/fading-defaultpng-when-iphone-app.html

In the interface of your App Delegate:


@interface AppDelegate : NSObject 
{
  UIImageView *splashView;
}

In the implementation:


@implementation AppDelegate
- (void)applicationDidFinishLaunching:(UIApplication *)application {


  // After this line: [window addSubview:tabBarController.view];

  splashView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
  splashView.image = [UIImage imageNamed:@"Default.png"];
  [window addSubview:splashView];
  [window bringSubviewToFront:splashView];

  // Do your time consuming setup

  [splashView removeFromSuperview];
  [splashView release];
}

Make sure you have a Default.png in the resources

link|improve this answer
1  
This doesn't support UpsideDown portrait mode... – Mark Apr 19 '11 at 0:49
feedback

I did it pretty simply, by having my rootViewController push a modalViewController, loading from "Splash.nib" in a subclass of UIViewController I called "SplashViewController". The exact call was:

- (void) viewDidLoad {
SplashViewController *splashScreen = [[[SplashViewController alloc]    
        initWithNibName:@"SplashViewController" bundle:nil] autorelease];
[self presentModalViewController:splashScreen animated:NO];
//continue loading while MVC is over top...

When you launch the app, it pops right up, like a splash screen should. Then, the SplashViewController nib is just a full-screen UIImageView with a splash png, 320x480. After a 1-second NSTimer (anything more did seem to get in the way), it fires timerFireMethod, a custom method that just calls

[self dismissModalViewControllerAnimated:YES];

Then the modal VC just slides down and away, leaving my top tableView. The nice thing is, while the MVC is up, the underlying table can continue to load due to the independent nature of modal view controllers. So, I don't think this violates the HIGs, and actually does allow for faster launching. What would you rather look at, a cute picture, or an empty default view (snore)?

link|improve this answer
this saved me a huge amount of work! thanks for the killer answer! – Toran Billups Feb 22 '11 at 0:14
This is also a great way to display an authentication screen that mimics the default splash screen. – Ian S Jul 7 '11 at 15:30
feedback

Make your app take longer to load.

In all seriousness, Paul Tomblin is correct that this usually isn't a good idea. Default.png is a mechanism intended to make your app appear to load faster by holding an "empty" screenshot. Using it for a splash screen is a minor abuse, but intentionally making that splash screen appear for longer than it needs to is almost sick. (It will also degrade your user experience. Remember, every second the splash screen is visible is a second that the user is impatiently staring at your logo, swearing they'll switch to the first decent competitor they can find.)

If you're trying to cover for some sort of secondary loading--for example, if the interface has loaded and you're just waiting to get some data from the network--then it's probably okay, and Ben Gottlieb's approach is fine. I'd suggest adding a progress bar or spinner to make it clear to the user that something really is going on.

link|improve this answer
1  
I don't agree that intentionally delaying the loading of the app for branding is necessarily "sick." Keeping a logo up there for 1 extra second, for example, seems entirely appropriate. However, it would be a bit ridiculous to delay the app for an significant amount of time just for branding purposes. – LucasTizma May 5 '09 at 14:44
feedback

Write an actual splash screen class.

Here's a freely usable splash screen that I recently posted in my iPhone in Action blog: http://iphoneinaction.manning.com/iphone_in_action/2009/03/creating-a-splash-screen-part-one.html

link|improve this answer
Broken link. Long live permalinks. – Damien Jul 19 '11 at 7:58
feedback

Here is my simple splash screen code. 'splashView' is an outlet for a view that contains an image logo, UIActivityIndicator, and a "Load.." label (added to my 'MainWIndow.xib' in IB). The activity indicator is set to 'animating' in IB, I then spawn a separate thread to load the data. When done, I remove the splashView and add my normal application view:

-(void)applicationDidFinishLaunching:(UIApplication *)application {
    [window addSubview:splashView];
    [NSThread detachNewThreadSelector:@selector(getInitialData:) 
                                 toTarget:self withObject:nil];
}

-(void)getInitialData:(id)obj {
    [NSThread sleepForTimeInterval:3.0]; // simulate waiting for server response
    [splashView removeFromSuperview];
    [window addSubview:tabBarController.view];
}
link|improve this answer
This code unleashes a torrent of leak warnings when run. – dubbeat Apr 18 '11 at 10:20
feedback

simply use sleep(time in seconds); in your applicationDidFinishedLaunching method

link|improve this answer
feedback

The simplest way is to put your application's main thread into a sleep mode for desired period of time. Provided that "Default.png" exists in your application's bundle it will be displayed for as long as the main thread is asleep:


-(void)applicationDidFinishLaunching:(UIApplication *)application {
    [NSThread sleepForTimeInterval:5];
    window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 
    [window setBackgroundColor:[UIColor yellowColor]];
    [window makeKeyAndVisible];
}

As you are already aware, it's a horribly bad idea to do but it should work just fine...

link|improve this answer
feedback

in your appDelegate , theres a method called applicationDidFinishedLaunching use a sleep function. Pass a digit in the sleep function for the no. of seconds you want to hold screen.


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 
{    
    [window makeKeyAndVisible];
    [window addSubview:viewController.view];
    sleep(5);
    return YES;
}

I searched so much for this thing and everybody gave their own complex point of view. I couldn't find a simple way that would just let me do it.

KISS ( Keep it simple and Smart :) I avoided the actual as its offensive.

link|improve this answer
feedback

For stylish splash screen tutorial check out this http://adeem.me/blog/2009/06/22/creating-splash-screen-tutorial-for-iphone/

link|improve this answer
feedback

I agree it can make sense to have a splash screen when an app starts - especially if it needs to get some data from a web site first.

As far as following Apple HIG - take a look at the (MobileMe) iDisk app; until you register your member details the app shows a typical uitableview Default.png before very quickly showing a fullscreen view.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown