DFPCustomRenderedInterstitialDelegate.h 625 B

123456789101112131415161718192021
  1. //
  2. // DFPCustomRenderedInterstitialDelegate.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2014 Google Inc. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @class DFPCustomRenderedAd;
  9. @class DFPInterstitial;
  10. @protocol DFPCustomRenderedInterstitialDelegate<NSObject>
  11. /// Called after ad data has been received. You must construct an interstitial from
  12. /// |customRenderedAd| and call the |customRenderedAd| object's finishedRenderingAdView: method when
  13. /// the ad has been rendered.
  14. - (void)interstitial:(DFPInterstitial *)interstitial
  15. didReceiveCustomRenderedAd:(DFPCustomRenderedAd *)customRenderedAd;
  16. @end