Preload

public enum Preload : Int

The preload strategy of the player. The strategy specifies what data to load on source change.

  • The player will not load any data.

    Declaration

    Swift

    case none = 0
  • The player will load the metadata and the media.

    Declaration

    Swift

    case auto = 1
  • The player will load the metadata.

    Remark

    Only available on iOS.

    Declaration

    Swift

    case metadata = 2
  • The raw value of type String.

    Declaration

    Swift

    public var _rawValue: String { get set }