MAAdViewAdDelegate.h 1016 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // MAAdViewAdDelegate.h
  3. // AppLovinSDK
  4. //
  5. // Created by Thomas So on 8/10/18.
  6. // Copyright © 2020 AppLovin Corporation. All rights reserved.
  7. //
  8. #import <AppLovinSDK/MAAdDelegate.h>
  9. @class MAAd;
  10. NS_ASSUME_NONNULL_BEGIN
  11. /**
  12. * This delegate is notified about ad view events.
  13. *
  14. * @see <a href="https://dash.applovin.com/documentation/mediation/ios/getting-started/banners">MAX Integration Guide ⇒ iOS ⇒ Banners</a>
  15. * @see <a href="https://dash.applovin.com/documentation/mediation/ios/getting-started/mrecs">MAX Integration Guide ⇒ iOS ⇒ MRECs</a>
  16. */
  17. @protocol MAAdViewAdDelegate <MAAdDelegate>
  18. /**
  19. * The SDK invokes this method when the @c MAAdView has expanded to the full screen.
  20. *
  21. * @param ad An ad for which the ad view expanded.
  22. */
  23. - (void)didExpandAd:(MAAd *)ad;
  24. /**
  25. * The SDK invokes this method when the @c MAAdView has collapsed back to its original size.
  26. *
  27. * @param ad An ad for which the ad view collapsed.
  28. */
  29. - (void)didCollapseAd:(MAAd *)ad;
  30. @end
  31. NS_ASSUME_NONNULL_END