I was wondering whether one could run a HTML page from the iOS device's hard drive, using Objective-C only as a view port to the HTML page and having the HTML page be the application's actual interface. Is this possible to do?
Thanks,
Odinulf
|
I was wondering whether one could run a HTML page from the iOS device's hard drive, using Objective-C only as a view port to the HTML page and having the HTML page be the application's actual interface. Is this possible to do? Thanks, Odinulf |
|||||
|
|
for IOS create a file with the following:
(I got this straight out of the book "HTML5 for IOS and Android: A Beginner's Guide" [page 388-390]) And this is how you would do it for android. Hope this helps! |
||||
|
Yes it is possible. You need to subview a UIWebView and then load a request pointing to the HTML file in your local directory instead of a web URL. All of your web pages need to be added to the application bundle.
|
|||||
|
|
Yes it is possible. But, be careful, apple sometimes refuses it. This is what we call Web application. As Matt points out, take a look at PhoneGap or Sencha Touch |
|||
|
|
|
Sounds like http://phonegap.com is what you are looking for. |
|||
|
|
|
I've worked with phonegap with Android and am impressed with it. Haven't tried it with IOS but here's the link PhoneGap |
|||
|
|