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