Configuring Web Apps To Behave Like Native Apps on iOS
There are a number of things you can do with your web-based application to have it behave like a native iOS application. One of these I mentioned previously, which is to disable the user’s ability to zoom in and out using pinch gestures. In addition, you can hide the Safari user interface “chrome” so that the user is unaware they’re in a browser. You can also add splash screens and customize the icon that is shown when users add the web application to their device’s home screen. Hide Safari Browser UI This is referred to as “standalone mode” for your web application, and is accomplished with this meta tag: <meta name="apple-mobile-web-app-capable" content="yes" /> … more