5

无论正在播放曲目的应用程序,我都希望在 iOS 上播放当前曲目。我的意思是,例如,如果我在手机上使用 SoundCloud 或 Spotify,控制中心上的播放器是相同的,所以我认为可以获得当前曲目名称。

但是我不知道该怎么做,也许有人可以帮助我?

4

1 回答 1

5

令人沮丧的是,您只能获取音乐 (iPod) 应用程序上播放的歌曲的详细信息:

// Print the title of the currently playing song.
NSLog(@"%@", [[[MPMusicPlayerController iPodMusicPlayer] nowPlayingItem] valueForProperty:MPMediaItemPropertyTitle]);

要从其他应用程序中获取歌曲的详细信息,您应该可以调用:

[[MPNowPlayingInfoCenter defaultCenter] nowPlayingInfo]

但它总是返回nil

于 2014-05-07T11:11:21.793 回答