美文网首页
Enable play audio background

Enable play audio background

作者: liwp_Stephen | 来源:发表于2016-11-04 09:00 被阅读0次

Call this function to enable play audio when app enter into background

- (void)enablePlayAudioBackground {
    [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
    [[AVAudioSession sharedInstance] setActive:YES error:nil];
}

相关文章

网友评论

      本文标题:Enable play audio background

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