BufferingState
@objc public enum BufferingState: Int, CustomStringConvertible
BufferingState contains all the possible states for the player buffering.
- Unknown: Not started, or there has been an error.
- Ready: The player is now ready to be played.
- Delayed: The player is still loading.
-
Unknown: Not started, or there has been an error.
Declaration
Swift
case unknown = 0
-
Ready: The player is now ready to be played.
Declaration
Swift
case ready
-
Delayed: The player is still loading.
Declaration
Swift
case delayed
-
The BufferingState’s description
Declaration
Swift
public var description: String