MAAdRequestDelegate.h 626 B

1234567891011121314151617181920212223242526
  1. //
  2. // MAAdRequestDelegate.h
  3. // AppLovinSDK
  4. //
  5. // Created by Andrew Tian on 7/8/22.
  6. //
  7. NS_ASSUME_NONNULL_BEGIN
  8. /**
  9. * This protocol defines a delegate to be notified about ad request events.
  10. */
  11. @protocol MAAdRequestDelegate <NSObject>
  12. /**
  13. * The SDK invokes this callback when it sends a request for an ad, which can be for the initial ad load and upcoming ad refreshes.
  14. *
  15. * The SDK invokes this callback on the UI thread.
  16. *
  17. * @param adUnitIdentifier The ad unit identifier that the SDK requested an ad for.
  18. */
  19. - (void)didStartAdRequestForAdUnitIdentifier:(NSString *)adUnitIdentifier;
  20. @end
  21. NS_ASSUME_NONNULL_END