How to create App for iOS using HTML5
Sinchron is HTML5 application, which was ported to iOS platform
- Create HTML application using HTML5 and CSS3
- Create manifest file
- Add link to manifest in HTML file:
<html manifest="cache.manifest"> - Add settings for Safari to HTML file:
<meta name="apple-mobile-web-app-capable" content="yes" /><meta name="apple-mobile-web-app-status-bar-style" content="black" /><meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no" /> - If needed to handle device onorientation change event use this:
window.onorientationchange = function() { // code here }
