提交应用程序之前的 iOS 链接到应用程序商店

iOS link to app store before submitting an app(提交应用程序之前的 iOS 链接到应用程序商店)

本文介绍了提交应用程序之前的 iOS 链接到应用程序商店的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在为我的 iPhone 应用程序构建一个关于"控制器.我已经看到其他应用程序成功地在其关于"控制器中包含市场价格"链接.

I'm building an "About" controller for my iPhone app. I've see other apps successfully include a "rate in market" link to within their "About" controllers.

我是否可以预测我的链接是什么,以便我可以在应用的第一个版本中对其进行硬编码,而不是上传/找出链接/发布更新?

Is it possible for me to predict what my link would be, so I can hard-code it in the first release of the app, rather than uploading/figuring out the link/releasing the update?

例如,android 应用市场链接可能如下所示:

For example an android app market link may look like :

https://market.android.com/details?id=[package name]

对于 Android,有一个带有市场 URL 的操作视图,可以打开以直接链接到应用程序.

for Android, there's an action view with a market URL that may be opened to link right to the app.

iOS内部有对应的动作吗?我希望客户能够从我的关于"控制器导航到应用商店中的应用页面.

推荐答案

查看 iTunes 链接生成器.看起来通用形式是:

Check out the iTunes link maker. It looks like the generic form is:

http://itunes.apple.com/us/app/[APPNAME]/id[APP_ID]

一些例子:

http://itunes.apple.com/us/app/myapp/id427813331?mt=8&uo=4
http://itunes.apple.com/us/app/hot-radar/id308361196?mt=8&uo=4
http://itunes.apple.com/us/app/lightshow-!/id380886382?mt=8&uo=4
http://itunes.apple.com/us/app/disney-world-park-maps-by/id392534629?mt=8&uo=4
http://itunes.apple.com/us/app/universal-park-maps-orlando/id392535133?mt=8&uo=4

我认为 APP_ID 是指您产品的 iTunes Connect 应用 ID.所以如果你有那个和名字,你很高兴!

I think APP_ID refers to the iTunes Connect App ID for your product. So if you have that, and the name, your good to go!

这篇关于提交应用程序之前的 iOS 链接到应用程序商店的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:提交应用程序之前的 iOS 链接到应用程序商店

基础教程推荐