PlaybackState
public enum PlaybackState : Equatable, CustomStringConvertible
An enum that describes the playback state of the Video Player
-
The asset is loading
Declaration
Swift
case loading
-
The playback has been paused
Declaration
Swift
case paused
-
The vide is currently playing
Declaration
Swift
case playing
-
The playback has been stopped
Declaration
Swift
case stopped
-
Declaration
Swift
public var description: String { get }