Stephen
Stephen

Reputation: 717

iPhone APP to connect to a website without browser bars

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?

Upvotes: 0

Views: 206

Answers (1)

ceejayoz
ceejayoz

Reputation: 180065

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

Upvotes: 1

Related Questions