RTBSDK iOS Integration
Release Notes
  • Start
    • Setup
      • Cocoapods
      • Swift Package Manager
      • Configure RTBSDK
    • Consent
  • Formats
    • Banners
    • Fullscreen (Interstitial)
    • Native Ads
    • Advanced
      • Separate Loading and Rendering of Banner Ads
  • Other
    • AdMob Custom Events
    • AppLovin Custom Adapter
    • Reference
      • Classes
        • RTBSDKManager
        • RTBBannerView
        • RTBBannerAdProvider
        • RTBBannerBid
        • RTBBannerRequestConfiguration
        • RTBBannerSize
        • RTBFullscreenAd
        • RTBFullscreenRequestConfiguration
        • RTBNativeAdLoader
        • RTBNativeAd
        • RTBNativeAdRequestConfiguration
        • RTBUserTargeting
        • RTBBidInfo
      • Protocols
        • RTBBannerViewDelegate
        • RTBBannerAdLoadDelegate
        • RTBBannerAdInteractionDelegate
        • RTBFullscreenDelegate
        • RTBNativeAdLoaderDelegate
        • RTBNativeAdInteractionDelegate
      • Enumerations
        • RTBLogLevel
        • RTBGender
  • Sample App
Powered by GitBook
On this page
  1. Other
  2. Reference
  3. Protocols

RTBBannerAdInteractionDelegate

@objc public protocol RTBBannerAdInteractionDelegate {

    /**
     * Tells the delegate that a click has been recorded for the ad.
     */
    func bannerAdDidRecordClick()

    /**
     * Tells the delegate that ad has opened external browser.
     */
    func bannerAdDidPauseForAd()

    /**
     * Tells the delegate that Ad has been dismissed.
     */
    func bannerAdDidResumeAfterAd()

    /**
     * Tells the delegate that an ad rendering failed.
     */
    func bannerAdDidFailToRender(error: String)
}

Last updated 9 months ago