1

我正在尝试通过我的项目上的按钮链接到艺术家 iTunes 的“页面”。我尝试使用他们的 safari 页面,例如“http://itunes.apple.com/au/artist/blink-182/id116851”,它工作过一次,但只在 safari 中显示了他们的页面。我想将他们引导到 iTunes 商店应用程序上的艺术家页面。我已经阅读了其他问题,它们似乎都是如何链接到应用商店上的应用,但与 iTunes 商店无关。这是我的按钮代码:

-(IBAction)ofwebsite2 {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.apple.com/au/artist/blink-182/id116851"]];
}

我尝试添加 itms:// 而不是 http:// 但这仍然不起作用。

4

1 回答 1

1

Adding itms:// instead of http:// should work as this is the only proper way to do it. Even if you leave it as http, it should open safari, then redirect to iTunes app.

And please note that this will only work in a device, not in simulator.

于 2012-07-12T08:18:50.420 回答