AdStream

Objective-C

enum AdStream : NSInteger {}

Swift

enum AdStream : Int, @unchecked Sendable

All possible stream type that contains video advertisement.

  • The ad is embedded inside the video content stream.

    Declaration

    Objective-C

    ADSTREAM_CONTENT = 0

    Swift

    case ADSTREAM_CONTENT = 0
  • The ad is played from a separate video stream.

    Declaration

    Objective-C

    ADSTREAM_SEPARATE

    Swift

    case ADSTREAM_SEPARATE = 1
  • The ad stream is unknown.

    Declaration

    Objective-C

    ADSTREAM_UNKNOWN = 99

    Swift

    case ADSTREAM_UNKNOWN = 99