美文网首页
ios腾讯云后台播放superPlayerView

ios腾讯云后台播放superPlayerView

作者: 昊楷 | 来源:发表于2021-03-18 16:46 被阅读0次

1.在推流页面或者播放页面遵循设置 TXLiveAudioSessionDelegate.h 代理;

superPlayerView中
//设置 TXLiveAudioSessionDelegate 代理
[TXLiveBase setAudioSessionDelegate:self];

2.实现代理方法

- (BOOL)setCategory:(NSString *)category withOptions:(AVAudioSessionCategoryOptions)options error:(NSError **)outError;{
    // 告诉app支持后台播放
    AVAudioSession *audioSession = [AVAudioSession sharedInstance];
    [audioSession setActive:YES error:nil];
    NSError *error ;
    
    BOOL result = [audioSession setCategory:AVAudioSessionCategoryPlayback error:nil];
    return result;
}

3.接下来就是按照自己的需求来实现MPNowPlayingInfoCenter和MPRemoteCommandCenter
网上有很多请自行查找

相关文章

网友评论

      本文标题:ios腾讯云后台播放superPlayerView

      本文链接:https://www.haomeiwen.com/subject/dskpcltx.html