AATInfeedBannerPlacementDelegate
@objc public protocol AATInfeedBannerPlacementDelegate: AnyObject {
/// 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 AATInfeedBannerPlacementDelegate
/// Ad has been displayed on the screen
- (void)aatPauseForAdWithPlacement:(id <AATPlacement> _Nonnull)placement;
/// App paused after clicking on the ad
- (void)aatPauseForAdWithPlacement:(id <AATPlacement> _Nonnull)placement;
@end
Last updated