Enable play audio background

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)