download and run Html code on iphone forbidden?
Apple says this can be a reason for rejection for any Iphone app:
No Interpreted Code You cannot create an app that downloads and executes code that was not present in the app bundle submitted to Apple.
Downloading and running Html code fro开发者_开发知识库m my web service to iphone is forbidden ? Please no guessing but real experience.
Apple means the following with their rules:
What you can do:
- Run HTML code with Javascripts in a UIWebView
- Inject custom Javascript into a website
- Download HTML snippets to view in a UIWebView
What you can't do:
- Download an executable binary and run it. (wouldn't work as they're probably unsigned, but Apple rejects apps that do so anyway)
精彩评论