DFPCustomRenderedAd.h 687 B

12345678910111213141516171819202122232425262728
  1. //
  2. // DFPCustomRenderedAd.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2014 Google Inc. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. /// Custom rendered ad. Your application renders the ad.
  9. @interface DFPCustomRenderedAd : NSObject
  10. /// The ad's HTML.
  11. @property(nonatomic, copy, readonly) NSString *adHTML;
  12. /// The base URL of the ad's HTML.
  13. @property(nonatomic, copy, readonly) NSURL *adBaseURL;
  14. /// Call this method when the user clicks the ad.
  15. - (void)recordClick;
  16. /// Call this method when the ad is visible to the user.
  17. - (void)recordImpression;
  18. /// Call this method after the ad has been rendered in a UIView object.
  19. - (void)finishedRenderingAdView:(UIView *)view;
  20. @end