40 lines
1.0 KiB
C
40 lines
1.0 KiB
C
|
|
//
|
||
|
|
// MAAdViewAdDelegate.h
|
||
|
|
// AppLovinSDK
|
||
|
|
//
|
||
|
|
// Created by Thomas So on 8/10/18.
|
||
|
|
// Copyright © 2020 AppLovin Corporation. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "MAAd.h"
|
||
|
|
#import "MAAdDelegate.h"
|
||
|
|
#import "MAAdRevenueDelegate.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This delegate is notified about ad view events.
|
||
|
|
*
|
||
|
|
* @see <a href="https://dash.applovin.com/documentation/mediation/ios/getting-started/banners">MAX Integration Guide ⇒ iOS ⇒ Banners</a>
|
||
|
|
* @see <a href="https://dash.applovin.com/documentation/mediation/ios/getting-started/mrecs">MAX Integration Guide ⇒ iOS ⇒ MRECs</a>
|
||
|
|
*/
|
||
|
|
@protocol MAAdViewAdDelegate<MAAdDelegate>
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The SDK invokes this method when the @c MAAdView has expanded to the full screen.
|
||
|
|
*
|
||
|
|
* @param ad An ad for which the ad view expanded.
|
||
|
|
*/
|
||
|
|
- (void)didExpandAd:(MAAd *)ad;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The SDK invokes this method when the @c MAAdView has collapsed back to its original size.
|
||
|
|
*
|
||
|
|
* @param ad An ad for which the ad view collapsed.
|
||
|
|
*/
|
||
|
|
- (void)didCollapseAd:(MAAd *)ad;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|