How can I display a splash screen for longer on an iPhone? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:50:00Z http://stackoverflow.com/feeds/question/553336 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/553336/how-can-i-display-a-splash-screen-for-longer-on-an-iphone 0 How can I display a splash screen for longer on an iPhone? Shofiur 2009-02-16T13:41:12Z 2009-10-27T17:57:19Z <p>How can I display a splash screen for a longer period of time than the default time on an iPhone?</p> http://stackoverflow.com/questions/553336/how-can-i-display-a-splash-screen-for-longer-on-an-iphone/553358#553358 7 Answer by Ben Gottlieb for How can I display a splash screen for longer on an iPhone? Ben Gottlieb 2009-02-16T13:53:16Z 2009-02-16T13:53:16Z <p>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.</p> http://stackoverflow.com/questions/553336/how-can-i-display-a-splash-screen-for-longer-on-an-iphone/553359#553359 11 Answer by Paul Tomblin for How can I display a splash screen for longer on an iPhone? Paul Tomblin 2009-02-16T13:53:19Z 2009-02-16T13:53:19Z <p>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.</p> <p>Making it stay there for longer would be a violation of the HIG.</p> http://stackoverflow.com/questions/553336/how-can-i-display-a-splash-screen-for-longer-on-an-iphone/553440#553440 3 Answer by Brent Royal-Gordon for How can I display a splash screen for longer on an iPhone? Brent Royal-Gordon 2009-02-16T14:19:03Z 2009-02-16T14:19:03Z <p>Make your app take longer to load.</p> <p>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.)</p> <p>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.</p> http://stackoverflow.com/questions/553336/how-can-i-display-a-splash-screen-for-longer-on-an-iphone/664452#664452 0 Answer by Shannon A. for How can I display a splash screen for longer on an iPhone? Shannon A. 2009-03-19T23:30:17Z 2009-03-19T23:30:17Z <p>Write an actual splash screen class.</p> <p>Here's a freely usable splash screen that I recently posted in my iPhone in Action blog: <a href="http://iphoneinaction.manning.com/iphone%5Fin%5Faction/2009/03/creating-a-splash-screen-part-one.html" rel="nofollow">http://iphoneinaction.manning.com/iphone_in_action/2009/03/creating-a-splash-screen-part-one.html</a></p> http://stackoverflow.com/questions/553336/how-can-i-display-a-splash-screen-for-longer-on-an-iphone/913870#913870 3 Answer by nevan for How can I display a splash screen for longer on an iPhone? nevan 2009-05-27T04:04:57Z 2009-05-27T04:04:57Z <p>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:</p> <p><a href="http://michael.burford.net/2008/11/fading-defaultpng-when-iphone-app.html" rel="nofollow">http://michael.burford.net/2008/11/fading-defaultpng-when-iphone-app.html</a></p> <p>In the interface of your App Delegate:</p> <pre><code> @interface AppDelegate : NSObject { UIImageView *splashView; } </code></pre> <p>In the implementation:</p> <pre><code> @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]; } </code></pre> <p>Make sure you have a Default.png in the resources</p> http://stackoverflow.com/questions/553336/how-can-i-display-a-splash-screen-for-longer-on-an-iphone/1052385#1052385 1 Answer by adeem for How can I display a splash screen for longer on an iPhone? adeem 2009-06-27T08:26:49Z 2009-06-27T08:26:49Z <p>For stylish splash screen tutorial check out this <a href="http://adeem.me/blog/2009/06/22/creating-splash-screen-tutorial-for-iphone/" rel="nofollow">http://adeem.me/blog/2009/06/22/creating-splash-screen-tutorial-for-iphone/</a></p> http://stackoverflow.com/questions/553336/how-can-i-display-a-splash-screen-for-longer-on-an-iphone/1120917#1120917 0 Answer by wcochran for How can I display a splash screen for longer on an iPhone? wcochran 2009-07-13T17:31:44Z 2009-07-13T17:31:44Z <p>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:</p> <pre><code>-(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]; } </code></pre> http://stackoverflow.com/questions/553336/how-can-i-display-a-splash-screen-for-longer-on-an-iphone/1147688#1147688 0 Answer by Rahul Vyas for How can I display a splash screen for longer on an iPhone? Rahul Vyas 2009-07-18T14:32:40Z 2009-07-18T14:32:40Z <p>simply use sleep(time in seconds); in your applicationDidFinishedLaunching method </p> http://stackoverflow.com/questions/553336/how-can-i-display-a-splash-screen-for-longer-on-an-iphone/1632585#1632585 0 Answer by jimiHendrix for How can I display a splash screen for longer on an iPhone? jimiHendrix 2009-10-27T17:57:19Z 2009-10-27T17:57:19Z <p>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: <p> <code> - (void) viewDidLoad {<br> SplashViewController *splashScreen = [[[SplashViewController alloc] initWithNibName:@"SplashViewController" bundle:nil] autorelease];<br> [self presentModalViewController:splashScreen animated:NO];<br> //continue loading while MVC is over top... </code></p> <p>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</p> <p><code> [self dismissModalViewControllerAnimated:YES]; </code></p> <p>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 <b><i>can continue to load</i></b> 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)?</p>