I have this web app which works great on mobile browsers however I would like to allow this app being downloaded as "native app" through the apple app store.
My app basically consists out of three files which it serves to the client:
- index.html
- build.js
- build.css
My research so far came to the conclusion that it is possible to do this by creating a web view with objective-c which executes the web app. Additionally you may use SDKs like phone gap to use native APIs (which is not required in this case).
Unfortunately I do not find a lot information on this by google, so I have following questions:
- What is the "keyword" I am looking for (whats the term for "wrapping html app in object-c")?
- Do I have to change the urls in my build.js (or can I overwrite current origin)?
- Is there anything else I would need to change in build.js?
- Are there any problems I should consider?