iOS HTML5 离线应用会在应用商店上架吗?
我是 IOS 开发的新手(目前,我正在 ASP.NET 中开发网站),我发现只需使用 html 5 和 javascript 就可以创建一个 IOS 应用程序。
这对我来说是个好消息,因为我没有时间学习 Obj-C 和 xCode 编写应用程序的方式。
不过,我听到了一些关于我是否能够将我的应用程序提交到应用程序商店的反对意见。
我可以在应用程序商店提交此类应用程序吗? 如果没有,有没有办法以某种方式“包装”它,以便可以提交?
谢谢!
I am new to IOS development (currently, I'm developing websites in ASP.NET) and I found out that one can create an IOS app using just html 5 and javascript.
Well that is great news for me since I don't have the time to learn Obj-C and xCode way of writing apps.
I have heard some opposing statements, though, on whether I will be able to submit my app into the app store.
Will I be able to submit such app in the app store?
If not, is there a way to 'wrap it up' somehow, so it could be submitted?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您将需要使用包装器,例如 AppMobi(我工作的地方)。这使您可以仅使用 html、javascript 和 CSS 编写应用程序。
You will need to use a wrapper, like AppMobi (where I work). This lets you write your app in html, javascript and CSS only.
您需要将应用程序包装在
UIWebView
容器中。据我所知,没有办法为 App Store 打包纯 HTML5 应用程序。我有四个应用程序,它们是 HTML5/Javascript 应用程序,包装在UIWebView
中。还有第三方框架可用于此。You need to wrap your application in a
UIWebView
container. As far as I know, there's no way to package an HTML5 only app for the App Store. I have four apps in there that are HTML5/Javascript apps, wrapped in aUIWebView
. There are also third-party frameworks available for this.不会,只有本机应用程序才会在应用程序商店中列出。要将应用程序提交到应用程序商店,您始终需要一个付费的 Apple 开发者帐户。
在这种情况下,本机意味着可以安装的真实应用程序。
您可以在 Phonegap 和 Titanium 等工具中使用 HTML 和 Javascript 构建应用程序。这些工具将创建一个加载本地 HTML 的本机应用程序,并尝试使其感觉像一个本机应用程序。
No, only native app will be listed in the App store. To submit apps to the appstore you will always need a paid Apple Developers account.
Native in this case meaning real apps that can be installed.
You can build an app in HTML and Javascript in tools like Phonegap and Titanium. These tools will create a native app which loads the local HTML and try to make it feel like a native app.