在 App Store 上将 LITE 版本连接到 FULL 版本 [英] Connecting the LITE Version to the FULL Version on App Store

查看:214
本文介绍了在 App Store 上将 LITE 版本连接到 FULL 版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

好的,我的应用程序的完整版本已在 App-Store 上启动并运行.现在我正在开发精简版;我在其中放置了一个按钮,用于将用户引导至 App-Store 的应用程序完整版页面.

OK, so I have the full version of my application up and running on the App-Store. Now I'm working on the lite version; I placed a button in it that supposes to direct the user to the App-Store to the application FULL Version page.

我正在使用 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.com/apps/AppName"]] 命令.

I'm using the [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.com/apps/AppName"]] command.

我非常感谢以下几个问题的帮助:

several issues I would very much appreciate assistance with:

  1. 是否有更好的命令行用于此操作?目前它会(自动)浏览多个页面,直到到达 App-Store 上的相关页面.是否有直接进入我将其定向到的页面的命令行?
  2. 我的应用程序名称由 2 个字符串组合而成(例如应用程序名称");目前,当我在设备上测试它时,它在被定向到 App Store 时没有找到它,而是转到一个页面,其中有一个搜索"按钮,如果我单击此按钮,它会在上面找到该应用程序App Store(命令行本身运行良好;如果我输入Shazam"或任何其他熟悉的应用程序名称而不是我的 AppName,它会转到正确的页面).我应该如何在命令行中编写它?应用名称"还是App_Name"?也许是别的什么?

非常感谢任何帮助...

any assistance would be very much appreciated...

推荐答案

我使用了以下内容 - 链接更改为模糊客户 ;-)

I have used the following - link changed to obscure customer ;-)

NSString *iTunesLink = @"http://itunes.apple.com/gb/app/wired-news-uk/id435728870?mt=8";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];

我所做的就是通过 iTunes 本身获取链接.当然,这意味着您要链接的应用程序必须已存在于 iTunes 中.但是我知道在 iTunesConnect 中创建应用程序后可以预期链接 - 尽管我还没有需要这样做.

All I do is grab the link via iTunes itself. Of course that means the app you wish to link to already has to exist in iTunes. However I understand it is possible to anticipate a link after creating the app in iTunesConnect - though I haven't had the need to do this yet.

这篇关于在 App Store 上将 LITE 版本连接到 FULL 版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆