Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS Duration of Splash Screen (Default.png)

im using a Default.png file for my iPad-app. It appears correctly but i could'nt find a way to modify the duration of the splash screen. Has somebody any suggestions? Google has many sites that show how to setup the startscreen but could'nt find a solution for my problem.

like image 878
0x90 Avatar asked Nov 28 '22 03:11

0x90


1 Answers

The first rule of Human Interface Guidelines for Splash Screens is: don't use splash screens. The second rule is: don't use splash screens!:

Supply a launch image to improve user experience.

Avoid using your launch image as an opportunity to provide:

An “application entry experience,” such as a splash screen

An About window

Branding elements, unless they are a static part of your application’s first screen

If you absolutely must include a long-duration splash screen, and have darn good reasons for doing so, the usual approach is to throw up a UIImageView containing a copy of you launch image in, e.g., application:didFinishLaunchingWithOptions: - which should provide the illusion of a lengthy splash screen.

But please don't.

like image 129
Conrad Shultz Avatar answered Dec 07 '22 01:12

Conrad Shultz