대시보드에서 발급받은 ad unit ID를 사용하여 광고 단위를 설정하세요.
ad unit ID
extension DaroMAdUnit { static let interstitial = DaroMAdUnit( adUnitID: "...", format: .interstitial ) }
let interstitialAd = DaroMInterstitialAd(adUnitIdentifier: DaroMAdUnit.interstitial.id) // highlight-next-line interstitialAd.load() // (Optional) 필요한 경우 Delegate 를 설정합니다. interstitialAd.clickDelegate = self interstitialAd.displayDelegate = self interstitialAd.loadingDelegate = self interstitialAd.impressionDelegate = self if interstitialAd?.isReady == true { // highlight-next-line interstitialAd?.show() }