Skip to content

Instantly share code, notes, and snippets.

@konnnn
Created April 21, 2019 12:22
Show Gist options
  • Save konnnn/1aacb76508c90e7d709db758c9784681 to your computer and use it in GitHub Desktop.
Save konnnn/1aacb76508c90e7d709db758c9784681 to your computer and use it in GitHub Desktop.
Check if AVPlayer is currently playing an item
import Foundation
import AVFoundation
extension AVPlayer {
var isPlaying: Bool {
return (self.player.rate != 0 && self.player.error == nil)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment