Sample code

Import the THEOads integration module

import THEOplayerTHEOadsIntegration

Create and add a THEOads integration to your THEOplayer

As of v8.14.0, the integration will be automatically created and added to THEOplayer when you add the THEOplayerTHEOadsIntegration package to your project. It is still possible to create and add an integration to override the auto-integration:

let theoads = THEOadsIntegrationFactory.createIntegration(on: theoplayer)
theoplayer.addIntegration(theoads)

Add a THEOAdDescription source

let source = "PATH-TO-SIGNALING-SERVER/hls/MANIFEST-URI"
let typedSource = TypedSource(
    src: source,
    type: "application/x-mpegurl",
    hlsDateRange: true
)
let theoad = THEOAdDescription(
    networkCode: "NETWORK-CODE",
    customAssetKey: "CUSTOM-ASSET-KEY"
)
let sourceDescription = SourceDescription(source: typedSource, ads: [theoad])
theoplayer.source = sourceDescription