使用AVAudioSession时,如何将锁定屏幕播放控件中的标签设置为我当前正在播放的音频剪辑的标题?基本上,我希望标签看起来与iPod应用程序的锁定屏幕播放控件相同,它显示歌曲名称。目前,我的应用在我想要更改的标签中显示应用名称。
答案 0 :(得分:0)
在iOS 5中,您可以使用以下代码:
Class playingInfoCenter = NSClassFromString(@"MPNowPlayingInfoCenter");
if (playingInfoCenter) {
MPNowPlayingInfoCenter *center = [MPNowPlayingInfoCenter defaultCenter];
NSDictionary *songInfo = [NSDictionary dictionaryWithObjectsAndKeys:
@"Some artist", MPMediaItemPropertyArtist,
@"Some title", MPMediaItemPropertyTitle,
@"Some Album", MPMediaItemPropertyAlbumTitle,
nil];
center.nowPlayingInfo = songInfo;
}