iTunes 商店会接受基于 Safari 的 iPhone 应用程序吗?

发布于 2024-09-18 13:49:10 字数 314 浏览 4 评论 0原文

我即将开始开发 iPhone 应用程序。该应用程序本身相当基础,我想要快速的周转时间。

我自己是一名Web开发人员,专注于PHP/MySQL等传统Web技术;我没有 Objective-C 经验。

我的计划是创建一个非常基本的 iPhone 应用程序,它只是一个将一些基本变量传递到 URL 的 Safari 服务。该 URL 是用 PHP 构建的应用程序,位于我的服务器上,这样我就可以非常快速地创建应用程序,而无需外包任何内容。

我的问题是,这种性质的应用程序是否会被 iTunes 商店接受,还是会被彻底拒绝?非常欢迎任何人的经验或评论。

谢谢

I'm about to begin development of an iPhone app. The app itself is fairly basic, and I want a speedy turnaround time.

I'm a web developer myself, specialising in traditional web technologies such as PHP/MySQL; I have no experience in Objective-C.

My plan was to create a very basic iPhone app that is just a Safari service that passes some basic variables to a URL. That URL is the app built in PHP and housed on my servers, this way I can create the app very quickly without needing to outsource anything.

My question is whether apps of this nature would be accepted into the iTunes store, or would they be out-right rejected? Anyone's experiences or comments are very welcome.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

北方的韩爷 2024-09-25 13:49:10

两种方式都可以,但请注意 App Store 审查指南中的第 12.3 条:

12.3 仅是网页剪报、内容聚合器或链接集合的应用程序可能会被拒绝

在我看来,网站周围的简单 UIWebView 包装器接近于简单网页剪辑的定义。您的批准很可能取决于您能否吸引到富有同情心的审稿人。

It could go either way, but mind bullet 12.3 from the App Store Review Guidelines:

12.3 Apps that are simply web clippings, content aggregators, or a collection of links, may be rejected

In my opinion, a simple UIWebView wrapper around your web site comes close to the definition of a simple web clipping. Your approval may very well hinge on your luck in drawing a sympathetic reviewer.

落在眉间の轻吻 2024-09-25 13:49:10

这实际上取决于您的申请...此类申请过去已获得批准,但我再次强调,这取决于许多因素。
尝试以各种可能的方式测试您的应用程序,并记住内存问题。

祝你好运!

It really depends upon your application...These kinds of application have been approved in the past but again I am saying that it depends on many factors.
Try to test your app in every possible manner and also keep in mind the memory issues.

Best of luck!!!

左秋 2024-09-25 13:49:10

应该没问题 - 它称为网络应用程序,并且有软件可以为您完成此操作。

您需要做的就是创建一个 UIWebView 并将您的 Web 应用程序放入其中。

另请参阅 http://jqtouch.com。这让您了解可以在网络端做什么。 :)

http://www.netbiscuits.com/559

本机混合应用

本机应用程序可以更深入地交互
与手机模块和
传感器创造更丰富的
移动用户体验。网络饼干
提供预构建的本机应用程序
适用于所有主要移动设备的框架
操作系统很容易
根据需求定制
企业。

通过结合的力量获得“二合一”
移动网站和本机应用程序
将移动网站整合为混合型
应用程序并在所有主要应用程序中轻松列出它们
苹果等提供商的应用商店,
诺基亚、谷歌或三星将开设新店
移动分销渠道。这
这种方法的好处是很快的
上市时间,最小化开发
和维护工作量以及最大
移动跨平台技术
覆盖范围。

Should be fine - its called a web app and there is software out there that will do just this for you.

All you need to do is to make a UIWebView and put your web app into it.

Also look at http://jqtouch.com. That gives you some idea of what you can do web-side. :)

http://www.netbiscuits.com/559

Native Hybrid Apps

Native apps can interface more deeply
with the mobile handset modules and
sensors to create an even richer
mobile user experience. Netbiscuits
provides pre-build native apps
frameworks for all major mobile
operating systems to be easily
customized for the needs of
enterprises.

Get "2in1" by combining the power of
mobile websites and native apps by
wrapping mobile websites into hybrid
apps and list them easily in all major
app stores of providers like Apple,
Nokia, Google or Samsung to open a new
mobile distribution channel. The
benefits of this approach are fast
time to market, minimized development
and maintenance efforts and maximum
mobile cross-platform technology
coverage.

忘年祭陌 2024-09-25 13:49:10

是的,只要你在客户端坚持使用 HTML、CSS、JS 和 Obj-C,它就会被接受。您仍然需要将其包装在 iPhone 应用程序中。根据我的经验,最好的方法是使用 http://www.phonegap.com/ 或类似的框架。
您可以选择通过 iTunes 或作为常规 Web 应用程序部署您的应用程序(您的用户将能够在其跳板上创建指向您的 Web 应用程序的链接)

Yes, it will be accepted as long as you stick with HTML, CSS, JS and Obj-C on the client side. You still need to wrap it in an iPhone app. In my experience, the best way to this is to use http://www.phonegap.com/ or a similar framework.
You'll have the option of deploying you app through iTunes or as a regular web app (you users will be able to create a link to your web app right on their springboards)

莫言歌 2024-09-25 13:49:10

它应该被接受,允许您测试测试并使其看起来像本机应用程序。此外,您还必须确保您的服务器永远不会关闭,或者如果应用程序无法访问它,则仅显示错误消息。您还必须记住,有很多 iPod Touch 用户,但他们并不总是能够访问互联网。这意味着您很可能会获得一堆 1 星评论

It SHOULD be accepted, granted you test test test and make it look just like a native application. Also you'll have to make sure that your server is never down, or if the application can't reach it just display an error message. You also have to keep in mind that there are a lot of iPod Touch users, and they don't have access to the internet all the time. Which means that chances are you'll get a BUNCH of 1 star reviews

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文