Skip to content

Instantly share code, notes, and snippets.

@paulocoutinhox
Created September 19, 2018 16:26
Show Gist options
  • Save paulocoutinhox/79a9052623b1815e8d08bef3e59ea7df to your computer and use it in GitHub Desktop.
Save paulocoutinhox/79a9052623b1815e8d08bef3e59ea7df to your computer and use it in GitHub Desktop.
Workaround to enable audio session
- (void)activateAudioSession
{
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
[[AVAudioSession sharedInstance] setActive:YES error:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment