GADAdLoaderDelegate.h 517 B

123456789101112131415161718192021
  1. //
  2. // GADAdLoaderDelegate.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2015 Google Inc. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import "GADRequestError.h"
  9. @class GADAdLoader;
  10. /// Base ad loader delegate protocol. Ad types provide extended protocols that declare methods to
  11. /// handle successful ad loads.
  12. @protocol GADAdLoaderDelegate<NSObject>
  13. /// Called when adLoader fails to load an ad.
  14. - (void)adLoader:(GADAdLoader *)adLoader didFailToReceiveAdWithError:(GADRequestError *)error;
  15. @end