iOS 在提交应用程序之前链接到应用程序商店
我正在为我的 iPhone 应用程序构建一个“关于”控制器。我看到其他应用程序成功地将“市场价格”链接包含在其“关于”控制器中。
我是否可以预测我的链接是什么,以便我可以在应用程序的第一个版本中对其进行硬编码,而不是上传/找出链接/发布更新?
例如,android 应用市场链接可能如下所示:
https://market.android.com/details?id=[package name]
对于 Android,有一个带有市场 URL 的操作视图,可以打开该视图以直接链接到应用程序。
iOS 内有相应的操作吗?我希望客户能够从我的“关于”控制器导航到应用商店中的应用页面。
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?
For example an android app market link may look like :
https://market.android.com/details?id=[package name]
for Android, there's an action view with a market URL that may be opened to link right to the app.
Is there a corresponding action within iOS? I want the customer to be able to navigate to the app's page on the app store from my "About" controller.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 iTunes 链接制作工具。看起来通用形式是:
一些示例:
我认为
APP_ID
指的是您产品的 iTunes Connect 应用程序 ID。所以如果你有这个和名字,你就可以开始了!Check out the iTunes link maker. It looks like the generic form is:
Some examples:
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!此外,当您在 iTunes Connect 中创建应用程序时,您会看到链接“在应用程序商店中查看此应用程序”,即使该应用程序未发布或发送到苹果,您也可以直接使用该链接,因此,一旦您使用基本信息创建了它,您就会在那里看到链接您可以复制它。
Also when you create an app in iTunes Connect you have link View this app in app store there which you can use directly even if it is not published or sent to apple, so as soon as you create it with basic info you will have link there which you can copy.
到目前为止,Apple 已通过
appstore.com
域引入了短链接:请参阅技术问答 QA1633 了解可能性的完整描述。
By now Apple has introduced short-links via the
appstore.com
domain:See Technical Q&A QA1633 for the full description of the possibilities.