5

好的,我在这里看到了类似的问题,但没有一个真正为我回答这个问题。

我有一个流媒体音频应用程序,流源返回给我歌曲标题和艺术家姓名。我在应用程序中有一个 iTunes 按钮,并且想要打开 iTunes STORE(搜索)到那首确切的歌曲,或者至少关闭。我尝试了以下方法:


NSString *baseString = @"itms://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?songTerm=";

NSString *str1 = [self.songTitle2 stringByReplacingOccurrencesOfString:@" " withString:@"+"];

NSString *str2 = [self.artist2 stringByReplacingOccurrencesOfString:@" " withString:@"+"];

NSString *str = [NSString stringWithFormat:@"%@%@&artistTerm=%@", baseString, str1, str2];

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

此调用确实按预期将我切换到 iTunes STORE,但随后弹出错误“无法连接到 iTunes Store”。我显然在线,因为这首歌正在积极播放,而且我在商店里。iTunes 应用程序中的搜索框只显示歌曲名称,没有其他内容。

以下是生成字符串的示例:itms://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?artistTerm=Veruca+Salt&artistTerm=Volcano+Girls

我已经厌倦了将它生成的字符串粘贴到 Safari 中,它在我的 Mac 上运行良好,可以打开商店中艺术家的专辑。为什么不接电话?

此外,它似乎忽略了这两个项目,因为它没有带我去听那个艺术家的歌。这是否还需要知道专辑名称(我目前没有。)

帮助将不胜感激。谢谢。

4

3 回答 3

8

是的,我正在回答我自己的问题。

在与我认识的最好的程序员之一进行大量挖掘和交谈之后,我们有了一个解决方案,所以我想我会在这里分享它。该解决方案采用歌曲名称和艺术家,实际上确实调用了 Link Maker API,取回一个 XML 文档,并提取必要的信息以创建指向 iTunes Store 的链接,通过以下方式打开专辑中歌曲的商店包含这首歌的艺术家。

在视图控制器的界面中,添加:

@property (strong, readonly, nonatomic) NSOperationQueue* operationQueue;
@property (nonatomic) BOOL searching;

在实施中:

@synthesize operationQueue = _operationQueue;
@synthesize searching = _searching;

以下是将为您执行此操作的方法和代码:

// start an operation Queue if not started
-(NSOperationQueue*)operationQueue
{
    if(_operationQueue == nil) {
        _operationQueue = [NSOperationQueue new];
    }
    return _operationQueue;
}
// change searching state, and modify button and wait indicator (if you wish)
- (void)setSearching:(BOOL)searching
{
// this changes the view of the search button to a wait indicator while the search is     perfomed
// In this case
    _searching = searching;
    dispatch_async(dispatch_get_main_queue(), ^{
        if(searching) {
            self.searchButton.enabled = NO;
            [self.searchButton setTitle:@"" forState:UIControlStateNormal];
            [self.activityIndicator startAnimating];
        } else {
            self.searchButton.enabled = YES;
            [self.searchButton setTitle:@"Search" forState:UIControlStateNormal];
            [self.activityIndicator stopAnimating];
        }
    });
}
// based on info from the iTunes affiliates docs
// http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html
// this assume a search button to start the search. 
- (IBAction)searchButtonTapped:(id)sender {
    NSString* artistTerm = self.artistField.text;  //the artist text.
    NSString* songTerm = self.songField.text;      //the song text 
    // they both need to be non-zero for this to work right.
    if(artistTerm.length > 0 && songTerm.length > 0) {

        // this creates the base of the Link Maker url call.

        NSString* baseURLString = @"https://itunes.apple.com/search";
        NSString* searchTerm = [NSString stringWithFormat:@"%@ %@", artistTerm, songTerm];
        NSString* searchUrlString = [NSString stringWithFormat:@"%@?media=music&entity=song&term=%@&artistTerm=%@&songTerm=%@", baseURLString, searchTerm, artistTerm, songTerm];

        // must change spaces to +
        searchUrlString = [searchUrlString stringByReplacingOccurrencesOfString:@" " withString:@"+"];

        //make it a URL
        searchUrlString = [searchUrlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
        NSURL* searchUrl = [NSURL URLWithString:searchUrlString];
        NSLog(@"searchUrl: %@", searchUrl);

        // start the Link Maker search
        NSURLRequest* request = [NSURLRequest requestWithURL:searchUrl];
        self.searching = YES;
        [NSURLConnection sendAsynchronousRequest:request queue:self.operationQueue completionHandler:^(NSURLResponse* response, NSData* data, NSError* error) {

            // we got an answer, now find the data.
            self.searching = NO;
            if(error != nil) {
                NSLog(@"Error: %@", error);
            } else {
                NSError* jsonError = nil;
                NSDictionary* dict = [NSJSONSerialization JSONObjectWithData:data options:0 error:&jsonError];
                if(jsonError != nil) {
                    // do something with the error here
                    NSLog(@"JSON Error: %@", jsonError);
                } else {
                    NSArray* resultsArray = dict[@"results"];

                    // it is possible to get no results. Handle that here
                    if(resultsArray.count == 0) {
                        NSLog(@"No results returned.");
                    } else {

                        // extract the needed info to pass to the iTunes store search
                        NSDictionary* trackDict = resultsArray[0];
                        NSString* trackViewUrlString = trackDict[@"trackViewUrl"];
                        if(trackViewUrlString.length == 0) {
                            NSLog(@"No trackViewUrl");
                        } else {
                            NSURL* trackViewUrl = [NSURL URLWithString:trackViewUrlString];
                            NSLog(@"trackViewURL:%@", trackViewUrl);

                           // dispatch the call to switch to the iTunes store with the proper search url
                            dispatch_async(dispatch_get_main_queue(), ^{
                                [[UIApplication sharedApplication] openURL:trackViewUrl];
                            });
                        }
                    }
                }
            }
        }];
    }
}

返回的 XML 文件还有很多其他有用的信息,您也可以在这里提取,包括三种尺寸的专辑封面、专辑名称、成本等。

我希望这对其他人有所帮助。这让我困惑了很长一段时间,我感谢我的一个好朋友完成了这项工作。

于 2013-01-31T05:43:13.750 回答
0

您实际上是在使用 URL 进行搜索。这就是 iTunes 在搜索时打开的原因。我在 Mac OS X 中的 iTunes 也会在搜索中打开。

使用iTunes 的 Search API搜索您想要的内容并获取艺术家、专辑或歌曲 ID,以便您可以为该内容生成直接 URL。

查看iTunes Link Maker如何为艺术家或特定专辑创建 URL 并在您的应用程序中编写该 URL。

于 2013-01-30T07:59:19.213 回答
0

现在,当您尝试打开 iTunes html url 时,iOS 似乎已经直接打开了 iTunes 应用程序。

例如,尝试在https://itunes.apple.com/br/album/falando-de-amor/id985523754上执行 openURL 已经打开了 iTunes 应用程序而不是网站。

于 2015-09-02T18:23:24.230 回答