问题描述
好了,我有完整版我的应用程序启动和运行的应用程序商店的。现在我正在精简版的版本;我把一个按钮,它是假设用户到App商店直接向应用程序完整版本的页面。
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]] 命令
几个问题我非常AP preciate以下帮助:
several issues I would very much appreciate assistance with:
- 是否有此操作的更好的命令行?目前,它通过几页转到(自动),直到它达到在App-Store中的相关页面。是否有直接到我它引导到?页面的命令行
- 我的应用程序的名称是结合了两个字符串(例如,应用程序名称)的;目前,当我测试的设备上,它没有找到它,而被引导到App Store,而是它关系到一个网页,我有一个搜索按钮,如果我点击这个按钮,它确实发现在App在App Store(命令行本身完美的作品,如果我输入快变或任何其他熟悉的应用程序的名称,而不是我的AppName的它会转到右页)。我应该怎么写呢,在命令行? 应用程序名称或APP_NAME?也许别的东西吗?
任何帮助将非常AP preciated ...
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.
这篇关于连接Lite版到完整版本的应用程序商店的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!