I need to create an APP and all I know is web coding for mobile devices. Nor do I have a Apple Computer to write the code. What is the code to display a loading screen and then load in a mobile themed website without the url bar and the bookmark bar? Is there a tutorial on this?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

In the head of your HTML:

<meta name="apple-mobile-web-app-capable" content="yes">

It will only affect users who add the page to their home screen, though.

For the splash screen:

Your startup image must be 320x460 pixels.

Further details at: http://developer.apple.com/library/safari/#documentation/appleapplications/reference/SafariHTMLRef/Articles/MetaTags.html

link|improve this answer
Btw, do web apps support retina splash screens? – Moshe Jan 13 at 18:55
Not at this time, no. – ceejayoz Jan 13 at 18:56
Ok, cool, thanks. – Moshe Jan 13 at 18:58
Can you submit a website with this meta tag to the app store the same way you do a programmed app? – Stephen Harman Jan 13 at 19:13
No. For that you'd need something like PhoneGap. – ceejayoz Jan 13 at 19:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.