Skip to content

Instantly share code, notes, and snippets.

@bob910078
Created May 26, 2020 18:27
Show Gist options
  • Save bob910078/c1c55651cab887493ed13164782252de to your computer and use it in GitHub Desktop.
Save bob910078/c1c55651cab887493ed13164782252de to your computer and use it in GitHub Desktop.
var isHeadphonePluggedIn: Bool {
let audioOutputs: [AVAudioSessionPortDescription] = AVAudioSession.sharedInstance().currentRoute.outputs
for output in audioOutputs where output.portType == AVAudioSessionPortHeadphones {
print("headphone plugged in")
return true
}
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment