Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dynamic (Default.png) splashscreen in 3.0 [iPhone SDK]

I know it's possible to create a dynamically changable Default.png by creating a symbolic link. But that's not possible in iPhone SDK 3.0 anymore (only in 2.0). How can I make this in 3.0, or is this impossible? Tim

This worked on iPhone OS 2.0 http://collison.ie/blog/2008/11/dynamic-defaultpng-files-on-the-iphone but not on iPhone OS 3.0 anymore. The default-screen is always black.

I can change the default-screen in the documents-folder and the symbolic-link does link to that file. I tested that by browsing to the app-folder from the Simulator. I saw the right file in the documents-directory and I saw that the symbolic link points to that (the right) file.

like image 880
cutsoy Avatar asked Dec 30 '22 07:12

cutsoy


1 Answers

It's not possible in 3.0. It was only possible on 2.0 because it was an exploitable bug. The bug was fixed in 3.0 which is why it's not possible.

Apple don't intend the Default.png to be a "splash screen".

If you read the HIG, you'll see that the Default.png is suppose to represent your user interface as it would be "empty" - without any content. It is intended to give the user the illusion of an "near instant" launch.

Check out all of the Apple apps on the iPhone and you'll see how the default.png is meant to be used properly.

Apple frown upon using the Default.png as a splash screen. They say that it is really only appropriate for apps such as games that don't use the standard UI elements that are provided in the SDK.

That being said - lots of apps these days are using this feature to show splash screens, and seems Apple aren't really enforcing this guideline.

Long story short, you can do a splash screen, but it can't be dynamic - not anymore.

like image 55
Jasarien Avatar answered Jan 10 '23 03:01

Jasarien