在iPhone上:找出目前正在播放的歌曲? (在iPod音乐播放器中)

时间:2009-12-16 19:22:31

标签: iphone objective-c ipod

Apple在iPhone SDK 3.0中发布了access to the iPod Library,我想知道现在是否可以理解当前正在播放哪首歌?标题,艺术家,专辑就足够了。示例:用户打开应用程序,应用程序可以知道后台正在播放哪首歌曲。

有没有人有这方面的经验?

非常感谢!

1 个答案:

答案 0 :(得分:24)

MPMediaItem * song = [[MPMusicPlayerController iPodMusicPlayer] nowPlayingItem];
NSString * title   = [song valueForProperty:MPMediaItemPropertyTitle];
NSString * album   = [song valueForProperty:MPMediaItemPropertyAlbumTitle];
NSString * artist  = [song valueForProperty:MPMediaItemPropertyArtist];