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