Skip to content

Instantly share code, notes, and snippets.

@pgpt10
Created February 25, 2019 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pgpt10/a216aabdbacd0aae962d63f5b3444880 to your computer and use it in GitHub Desktop.
Save pgpt10/a216aabdbacd0aae962d63f5b3444880 to your computer and use it in GitHub Desktop.
extension AVPlayerViewController {
open override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
self.player?.pause()
NotificationCenter.default.post(name: Notification.Name("avPlayerDidDismiss"), object: nil, userInfo: nil)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment