我使用 aAVPlayer
来重现 iPod 库中的音乐曲目。
我完成了后台管理,现在我可以在点击两次主页按钮时看到我的应用程序图标显示在停靠栏中。媒体按钮也适用于我的应用程序。
我现在想做的是在同一个停靠栏中显示正在播放的项目信息,就像 iPodMusicPlayer 一样。
是否可以?
我使用 aAVPlayer
来重现 iPod 库中的音乐曲目。
我完成了后台管理,现在我可以在点击两次主页按钮时看到我的应用程序图标显示在停靠栏中。媒体按钮也适用于我的应用程序。
我现在想做的是在同一个停靠栏中显示正在播放的项目信息,就像 iPodMusicPlayer 一样。
是否可以?
使用 MediaPlayer 框架:
#include <MediaPlayer/MediaPlayer.h>
[[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:@{
MPMediaItemPropertyAlbumArtist:@"Album Artist",
MPMediaItemPropertyAlbumTitle:@"Album Title",
MPMediaItemPropertyTitle:@"Title",
MPMediaItemPropertyArtist:@"Artist"
}];
你不能使用 iOS 公共 API 来做到这一点。就 iPod Music App 而言,它是 Apple 内置的原生 iOS 应用程序,它肯定使用 Private API。
这是苹果的示例代码,可能会有所帮助 http://developer.apple.com/library/ios/#samplecode/AddMusic/Introduction/Intro.html