0

我在 iOS 7.0 中打开从我的应用程序到 iTunes 的 iTunes 链接时遇到问题

下面是生成到应用程序中的完整 url

NSString* urlStr = @"http://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?partnerId=30&siteID=2htbGpeyFlc&term=Citizen%20Cope%20Bullet%20and%20a%20Target";

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlStr2]];

当我在 iOS 7.0 以下打开它时,它可以正常工作并打开 iTunes 并搜索播放列表“Citizen Cope Bullet and a Target”,并且在 iOS 6.0 之前它可以正常工作。

但它不适用于 iOS 7.0。

4

1 回答 1

0

在我看来,您正在尝试打开一个名为“ urlStr2”的字符串,而您实际上已经将您的 URL 放入了一个名为“”的不同NSString 对象urlStr中。

除非您错过了在问题中复制和粘贴一些代码行。

于 2013-09-17T09:16:33.933 回答