音乐类型APP:如何添加正播放的音乐进度,歌手名,图片等信息显示 到锁屏和控制中心
- 使用的是豆瓣的音频播放类
- 导入头文件#import <MediaPlayer/MediaPlayer.h>
- #import <MediaPlayer/MPNowPlayingInfoCenter.h>
- #import <MediaPlayer/MPMediaItem.h>
- 远程控制事件接收与处理
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
[self becomeFirstResponder];
}
-(void)viewDidDisappear:(BOOL)animated{
[[UIApplication sharedApplication] endReceivingRemoteControlEvents];
[self resignFirstResponder];
}
- (void)remoteControlReceivedWithEvent:(UIEvent *)event
{
if (event.type == UIEventTypeRemoteControl) {
switch (event.subtype) {
case UIEventSubtypeRemoteControlPlay:
[self play]; // 播放
break;
case UIEventSubtypeRemoteControlPause:
[self pause];//暂停
break;
case UIEventSubtypeRemoteControlPreviousTrack:
[self forwardItem]; // 播放上一曲按钮
break;
case UIEventSubtypeRemoteControlNextTrack:
[self nextItem]; // 播放下一曲按钮
break;
default:
break;
}
}
}- 传递信息到锁屏状态下- (void)configPlayingInfo 此方法在播放歌曲与切换歌曲时调用即可
{
if (NSClassFromString(@"MPNowPlayingInfoCenter")) {
if ((lastPlayItem != self.player.currentItem) && !isRepeat) {
lastPlayItem = self.player.currentItem;
NSMutableDictionary *dict = [[NSMutableDictionary alloc]init];
[dict setObject:self.titleLabel.text forKey:MPMediaItemPropertyTitle];//歌曲名设置
[dict setObject:self.artistLabel.text forKey:MPMediaItemPropertyArtist];//歌手名设置
[dict setObject:[[MPMediaItemArtwork alloc] initWithImage:self.artwork.image] forKey:MPMediaItemPropertyArtwork];//专辑图片设置
[dict setObject:[NSNumber numberWithDouble:CMTimeGetSeconds(self.player.currentItem.currentTime)] forKey:MPNowPlayingInfoPropertyElapsedPlaybackTime]; //音乐当前已经播放时间
[dict setObject:[NSNumber numberWithFloat:1.0] forKey:MPNowPlayingInfoPropertyPlaybackRate];//进度光标的速度 (这个随 自己的播放速率调整,我默认是原速播放)
[dict setObject:[NSNumber numberWithDouble:CMTimeGetSeconds(self.player.currentItem.duration)] forKey:MPMediaItemPropertyPlaybackDuration];//歌曲总时间设置
[[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:dict];
}
}
} - 有几个注意点是,每次你暂停时需要保存当前的音乐播放进度和锁屏下进度光标的速度设置为接近0的数(0.00001),以便下次恢复播放时锁屏下进度光标位置能正常。如下代码:NSMutableDictionary *dict = [NSMutableDictionary dictionaryWithDictionary:[[MPNowPlayingInfoCenter defaultCenter] nowPlayingInfo]];
[dict setObject:[NSNumber numberWithDouble:CMTimeGetSeconds(CMTimeMakeWithSeconds((mSlider.value/timess)*timess, self.player.currentItem.currentTime.timescale))] forKey:MPNowPlayingInfoPropertyElapsedPlaybackTime];
[[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:dict]; - 此上面的mSlider是个UISlider控制播放进度的。
- 传递信息到锁屏状态下- (void)configPlayingInfo 此方法在播放歌曲与切换歌曲时调用即可
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。