在 iPhone 应用程序上打开 iTunes 链接?
可能的重复:
如何链接到应用商店中的应用 < /p>
我如果有意义的话,想要在我的主应用程序上链接我的所有应用程序 所以我有一个按钮,当用户触摸它时,
他们将被定向到此链接:
但是,
-(IBAction)goReviewTwo:(id)sender
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.apple.com/gb/artist/lifevision-studios/id415139916"]];
}
这总是说请求无法完成
。那么我需要使用一个特殊的链接吗?
Possible Duplicate:
How to link to apps on the app store
I want to link all my apps on my main app if that makes sense
So i have a button, when the user touches it
they will be directed to this link:
However
-(IBAction)goReviewTwo:(id)sender
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.apple.com/gb/artist/lifevision-studios/id415139916"]];
}
This always say Request cannot be complete
. So is there a special link i need to use for it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几个线程回答这个问题。这是一个: 线程
请注意建议的评论使用 itms:// 而不是 http://
There are several threads answering this question. Here is one: thread
Note the comment that suggests using itms:// instead of http://