Enable play audio background
2016-11-04 本文已影响0人
liwp_Stephen
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];
}