AATMultiSizeBannerPlacementDelegate
@objc public protocol AATMultiSizeBannerPlacementDelegate {
/// The placement has loaded a new ad
func aatHaveAdWithBannerView(placement: AATPlacement, bannerView: AATBannerPlacementWrapperView)
/// The placement has no ad available
func aatNoAd(placement: AATPlacement)
/// Ad has been displayed on the screen
func aatPauseForAd(placement: AATPlacement)
/// Back to the app after clicking on the ad
func aatResumeAfterAd(placement: AATPlacement)
}
@protocol AATMultiSizeBannerPlacementDelegate
/// The placement has loaded a new ad
- (void)aatHaveAdWithBannerViewWithPlacement:(id <AATPlacement> _Nonnull)placement bannerView:(AATBannerPlacementWrapperView * _Nonnull)bannerView;
/// The placement has no ad available
- (void)aatNoAdWithPlacement:(id <AATPlacement> _Nonnull)placement;
/// Ad has been displayed on the screen
- (void)aatPauseForAdWithPlacement:(id <AATPlacement> _Nonnull)placement;
/// Back to the app after clicking on the ad
- (void)aatResumeAfterAdWithPlacement:(id <AATPlacement> _Nonnull)placement;
@end
Last updated