0

我使用 aAVPlayer来重现 iPod 库中的音乐曲目。

我完成了后台管理,现在我可以在点击两次主页按钮时看到我的应用程序图标显示在停靠栏中。媒体按钮也适用于我的应用程序。

我现在想做的是在同一个停靠栏中显示正在播放的项目信息,就像 iPodMusicPlayer 一样。

是否可以?

4

3 回答 3

2

使用 MediaPlayer 框架:

#include <MediaPlayer/MediaPlayer.h>

[[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:@{
                           MPMediaItemPropertyAlbumArtist:@"Album Artist",
                            MPMediaItemPropertyAlbumTitle:@"Album Title",
                                 MPMediaItemPropertyTitle:@"Title",
                                MPMediaItemPropertyArtist:@"Artist"
 }];
于 2012-11-28T11:45:59.740 回答
0

你不能使用 iOS 公共 API 来做到这一点。就 iPod Music App 而言,它是 Apple 内置的原生 iOS 应用程序,它肯定使用 Private API。

于 2012-11-28T11:38:56.037 回答
0

这是苹果的示例代码,可能会有所帮助 http://developer.apple.com/library/ios/#samplecode/AddMusic/Introduction/Intro.html

于 2012-11-28T11:41:35.660 回答