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];
}
网友评论