AdropInterstitialAdDelegate

protocol AdropInterstitialAdDelegate {
    @objc func onAdReceived(_ ad: AdropInterstitialAd)
    @objc func onAdFailedToReceive(_ ad: AdropInterstitialAd, _ errorCode: AdropErrorCode)
    
    @objc optional func onAdImpression(_ ad: AdropInterstitialAd)
    @objc optional func onAdClicked(_ ad: AdropInterstitialAd)
    
    @objc optional func onAdWillPresentFullScreen(_ ad: AdropInterstitialAd)
    @objc optional func onAdDidPresentFullScreen(_ ad: AdropInterstitialAd)
    @objc optional func onAdWillDismissFullScreen(_ ad: AdropInterstitialAd)
    @objc optional func onAdDidDismissFullScreen(_ ad: AdropInterstitialAd)
    @objc optional func onAdFailedToShowFullScreen(_ ad: AdropInterstitialAd, _ errorCode: AdropErrorCode)
}

AdropInterstitialAd에 의해 트리거될 콜백을 정의하는 프로토콜입니다.


Public functions

func onAdReceived(_ ad: AdropInterstitialAd)

func onAdReceived(_ ad: AdropInterstitialAd)

이 메소드는 AdropInterstitialAd가 광고를 수신할 때 UI 스레드에서 호출됩니다.

func onAdFailedToReceive(_ ad: AdropInterstitialAd, _ errorCode: AdropErrorCode)

func onAdFailedToReceive(_ ad: AdropInterstitialAd, _ errorCode: AdropErrorCode)

이 메소드는 AdropInterstitialAd가 광고 수신에 실패했을 때 UI 스레드에서 호출됩니다.

func onAdClicked(_ ad: AdropInterstitialAd)

func onAdClicked(_ ad: AdropInterstitialAd)

이 메소드는 AdropInterstitialAd가 클릭 되었을 때 UI 스레드에서 호출됩니다.

func onAdImpression(_ ad: AdropInterstitialAd)

func onAdClicked(_ ad: AdropInterstitialAd)

이 메소드는 AdropInterstitialAd를 표시할 때 UI 스레드에서 호출됩니다.

func onAdWillPresentFullScreen(_ ad: AdropInterstitialAd)

func onAdWillPresentFullScreen(_ ad: AdropInterstitialAd)

이 메소드는 AdropInterstitialAd가 나타나기 전 UI 스레드에서 호출됩니다.

func onAdDidPresentFullScreen(_ ad: AdropInterstitialAd)

func onAdDidPresentFullScreen(_ ad: AdropInterstitialAd)

이 메소드는 AdropInterstitialAd가 나타날 때 UI 스레드에서 호출됩니다.

func onAdWillDismissFullScreen(_ ad: AdropInterstitialAd)

func onAdWillDismissFullScreen(_ ad: AdropInterstitialAd)

이 메소드는 AdropInterstitialAd가 사라지기 전 UI 스레드에서 호출됩니다.

func onAdDidDismissFullScreen(_ ad: AdropInterstitialAd)

func onAdDidDismissFullScreen(_ ad: AdropInterstitialAd)

이 메소드는 AdropInterstitialAd가 사라졌을 때 UI 스레드에서 호출됩니다.

func onAdFailedToShowFullScreen(_ ad: AdropInterstitialAd, _ errorCode: AdropErrorCode)

func onAdFailedToShowFullScreen(_ ad: AdropInterstitialAd, _ errorCode: AdropErrorCode)

이 메소드는 AdropInterstitialAd가 광고 표시에 실패했을 때 UI 스레드에서 호출됩니다.

Last updated