目前我可以播放spotify曲目。我可以听曲目。但是,如果我想像spotify一样打开音频播放器,并希望看到播放器及其控件以及收听怎么办?我的代码在这里:
// Invoked by clicking the Cell in the UI.
// arrfileteredURL -> list of track urls
NSURL *trackURL = [NSURL URLWithString:[NSString stringWithFormat:@"%@",[arrfileteredURL objectAtIndex:indexPath.row]]];
NSLog(@"trackURL > %@",trackURL);
[[SPSession sharedSession] trackForURL:trackURL callback:^(SPTrack *track)
{
if (track != nil)
{
[SPAsyncLoading waitUntilLoaded:track timeout:kSPAsyncLoadingDefaultTimeout then:^(NSArray *tracks, NSArray *notLoadedTracks)
{
[self.playbackManager playTrack:track callback:^(NSError *error)
{
if (error)
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Cannot Play Track" message:[error localizedDescription] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
} else
{
}
}];
}];
}
}];
播放管理器将开始播放音频将做什么??它只会播放音频还是使用户也能看到播放器?
playbackManagerWillStartPlayingAudio
只是告诉您噪音已经开始传递到扬声器/耳机/等。
CocoaLibSpotify不附带任何播放器UI。如果你想要这个,你必须自己构建它。