GADCustomEventNativeAdDelegate.h 940 B

1234567891011121314151617181920212223242526
  1. //
  2. // GADCustomEventNativeAdDelegate.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2015 Google Inc. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "GADCustomEventNativeAd.h"
  9. #import "GADMediatedNativeAd.h"
  10. /// The delegate of the GADCustomEventNativeAd object must adopt the GADCustomEventNativeAdDelegate
  11. /// protocol. Methods in this protocol are used for native ad's custom event communication with the
  12. /// Google Mobile Ads SDK.
  13. @protocol GADCustomEventNativeAdDelegate<NSObject>
  14. /// Tells the delegate that the custom event ad request succeeded and loaded a native ad.
  15. - (void)customEventNativeAd:(id<GADCustomEventNativeAd>)customEventNativeAd
  16. didReceiveMediatedNativeAd:(id<GADMediatedNativeAd>)mediatedNativeAd;
  17. /// Tells the delegate that the custom event ad request failed.
  18. - (void)customEventNativeAd:(id<GADCustomEventNativeAd>)customEventNativeAd
  19. didFailToLoadWithError:(NSError *)error;
  20. @end