DFPInterstitial.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // DFPInterstitial.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2012 Google Inc. All rights reserved.
  6. //
  7. #import "GADCorrelator.h"
  8. #import "GADInterstitial.h"
  9. @protocol DFPCustomRenderedInterstitialDelegate;
  10. @protocol GADAppEventDelegate;
  11. @interface DFPInterstitial : GADInterstitial
  12. /// Required value created on the DFP website. Create a new ad unit for every unique placement of an
  13. /// ad in your application. Set this to the ID assigned for this placement. Ad units are important
  14. /// for targeting and stats.
  15. ///
  16. /// Example DFP ad unit ID: @"/6499/example/interstitial"
  17. @property(nonatomic, readonly, copy) NSString *adUnitID;
  18. /// Correlator object for correlating this object to other ad objects.
  19. @property(nonatomic, strong) GADCorrelator *correlator;
  20. /// Optional delegate that is notified when creatives send app events.
  21. @property(nonatomic, weak) id<GADAppEventDelegate> appEventDelegate;
  22. /// Optional delegate object for custom rendered ads.
  23. @property(nonatomic, weak)
  24. id<DFPCustomRenderedInterstitialDelegate> customRenderedInterstitialDelegate;
  25. @end