Can I add a popup screen to the iPhone web app launched from the home page?

I have created an iPhone web app (written in HTML / JavaScript format) that can be added to the home page using the launch button.

It takes about 5-7 seconds for this app to run.

When launched, it displays the previous screen of the application (not always the last one that the user is on).

Is there anyway to provide some sort of splash screen so that the user knows the app is starting and they have to wait?

+2


source to share


1 answer


According to the apple documentation, one can start with iPhone OS 3.0 with:

<link rel="apple-touch-startup-image" href="/startup.png">

      



see Specifying an Initial Image

On iPhone OS, which is similar to native apps, you can specify the startup image to be displayed while your web app launches

+6


source







All Articles