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. Classes

RTBFullscreenAd

@objc public class RTBFullscreenAd : NSObject {

    /// The delegate the will be notified with the different events
    weak public var delegate: RTBFullscreenDelegate?

    /// Start loading a fullscreen ad
    ///  - Parameter configuration: Fullscreen request configuration that is needed to request a new Ad, see ``RTBFullscreenRequestConfiguration``
    @discardableResult
    @objc public func load(configuration: RTBFullscreenRequestConfiguration) -> Bool

    /// Show the loaded fullscreen ad
    /// - Parameter viewController: The view controller that will be used to present the fullscreen ad
    @discardableResult
    @objc public func show(viewController: UIViewController) -> Bool
}

Last updated 1 year ago