Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>As stated in the comments by @NSPunk, you need to develop a native iOS app on the mac os x platform. That being said the easiest way to make your is to use the UIWebView Class which allows you to embed the web content into a native app. But as pointed out in the comments, unless you add on functionality to this web view, Apple is most likely going to reject it from inclusion in the app store.</p> <p><a href="http://developer.apple.com/library/ios/#documentation/uikit/reference/UIWebView_Class/Reference/Reference.html" rel="nofollow">http://developer.apple.com/library/ios/#documentation/uikit/reference/UIWebView_Class/Reference/Reference.html</a></p> <p>Other than that, you can make a mobile version specific to iOS devices of your site using meta tags like so</p> <pre><code>&lt;meta name="viewport" content="width=320px" /&gt; &lt;meta name="apple-mobile-web-app-capable" content="yes" /&gt; &lt;link rel="apple-touch-icon-precomposed" href="./apple-touch-icon.png" /&gt; </code></pre> <p>This gives a native experience without actually having to go through the app store. To me, this is the way I would go if all you want to do is make your web app more iOS friendly with your existing knowledge of php/mysql.</p> <p><a href="http://developer.apple.com/library/safari/#documentation/appleapplications/reference/SafariHTMLRef/Articles/MetaTags.html" rel="nofollow">http://developer.apple.com/library/safari/#documentation/appleapplications/reference/SafariHTMLRef/Articles/MetaTags.html</a></p> <p>If you do decide to go this route, here is a good php class I found to detect iOS devices.</p> <p><a href="http://code.google.com/p/php-mobile-detect/" rel="nofollow">php MobileDetect</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload