Reputation: 929
I have an nice app idea and have to decide wether to code 2 native apps - android and ios or to code an webapp, which will speed up my development really much.
but after some research about Webapps (embeded in an WebView) i have one little Problem... i cant find any examples for web apps.
Do someone know good examples for webapps? especially apps that with an android and ios version.
CLARIFICATION (i think the above is a bit misleading): I dont search for actual code or something like that. i only search for names of Apps which are developed with html/css/javascript (+ phonegap or anything) so i can download them and check how fast they are, how they look, if there are any differences to selfcoded native apps, and so on...
thx for ur help
Upvotes: 0
Views: 3630
Reputation: 55583
It depends on what you mean by 'web app'.
Apple WILL reject any application that is just a wrapper around a UIWebView
, so it must contain some more native code than that. There are certain apps (f.x. The Atlantic) That are created with online technologies like RareWire, that allow them to include native UIs for web-based technologies.
So you have a few options:
UIWebView
-based app, with native controls for certain things (maps, photos, GPS, etc.) (least common).The fact is, apple is very strict on their guidelines for apps on their appstore, and what you are referring to doesn't exist in the wild (however, if you are looking for jailbreak apps, it's a totally different story).
Upvotes: 2