BufferingState

public enum BufferingState : CustomStringConvertible

An enum that describes the current buffer state

  • The buffer is in an undefined state

    Declaration

    Swift

    case unknown
  • The video is ready to play

    Declaration

    Swift

    case ready
  • The playback is delayed until the buffer fills up

    Declaration

    Swift

    case delayed
  • Declaration

    Swift

    public var description: String { get }