I am working on an HTML5 webapp for computers, and I was thinking of making a mobile version.
Is there an SDK that can take HTML5/JS/CSS and convert it to a native iOS app I can upload on iTunesConnect?
The main thing that needs to work is the HTML5 Canvas... I haven't had any luck searching on Google.
you don't need Phonegap or any other framework, load a web view control and load html files in folder using;
NSString *htmlPath = [[NSBundle mainBundle] pathForResource:@"index"
ofType:@"html"
inDirectory:@"/htdocs" ];
NSString *html = [NSString stringWithContentsOfFile:htmlPath
encoding:NSUTF8StringEncoding
error:nil];
[webView loadHTMLString:html
baseURL:[NSURL fileURLWithPath:
[NSString stringWithFormat:@"%@/htdocs/",
[[NSBundle mainBundle] bundlePath]]]];
http://trigger.io/ might help you.
You write your HTML5 code using the Forge JavaScript API which gives you access to native features such as the camera and contacts API.
Our cloud build service does the rest to create your native apps for iPhone, iPad, Android and Windows Phone.
Disclaimer: not associated with trigger.io in any way.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With