| 123456789101112131415161718192021 |
- //
- // DFPCustomRenderedInterstitialDelegate.h
- // Google Mobile Ads SDK
- //
- // Copyright 2014 Google Inc. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class DFPCustomRenderedAd;
- @class DFPInterstitial;
- @protocol DFPCustomRenderedInterstitialDelegate<NSObject>
- /// Called after ad data has been received. You must construct an interstitial from
- /// |customRenderedAd| and call the |customRenderedAd| object's finishedRenderingAdView: method when
- /// the ad has been rendered.
- - (void)interstitial:(DFPInterstitial *)interstitial
- didReceiveCustomRenderedAd:(DFPCustomRenderedAd *)customRenderedAd;
- @end
|