Vikas Rajput
Vikas Rajput

Reputation: 1874

HTML base App on AppStore

Anybody can solve my confusion i have opened a url in webview (which is responsive for mobile ) then all functionality is performing fine like website,how can i make approve this by apple

 NSString *urlAddress = @"http://www.ideamasale.com/";

 NSURL *url = [NSURL URLWithString:urlAddress];

 NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];

 [detailWebView loadRequest:requestObj];

would Apple App Review Approve this App for AppStore

Upvotes: 1

Views: 123

Answers (2)

Aehmlo
Aehmlo

Reputation: 930

From section 4.2 of Apple's App Review Guidelines:

Your app should include features, content, and UI that elevate it beyond a repackaged website. If your app is not particularly useful, unique, or “app-like,” it doesn’t belong on the App Store.

So no, they won't accept that. You must use the web as your distribution platform (via "add to home screen" and friends).

Upvotes: 1

basvk
basvk

Reputation: 4546

No it'll would probably not be accepted, if the only thing your app does is opening a website.
But you might want to read the App Store Review Guidelines.
And specificly Section 4.2:

Minimum Functionality
Your app should include features, content, and UI that elevate it beyond a repackaged website. If your app is not particularly useful, unique, or “app-like,” it doesn’t belong on the App Store. If your App doesn't provide some sort of lasting entertainment value, or is just plain creepy, it may not be accepted. Apps that are simply a song or movie should be submitted to the iTunes store. Apps that are simply a book or game guide should be submitted to the iBooks Store.

Upvotes: 1

Related Questions