GADNativeAdImage+Mediation.h 491 B

123456789101112131415161718
  1. //
  2. // GADNativeAdImage+Mediation.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2015 Google. All rights reserved.
  6. //
  7. #import "GADNativeAdImage.h"
  8. @interface GADNativeAdImage (MediationAdditions)
  9. /// Initializes and returns a native ad image object with the provided image.
  10. - (instancetype)initWithImage:(UIImage *)image;
  11. /// Initializes and returns a native ad image object with the provided image URL and image scale.
  12. - (instancetype)initWithURL:(NSURL *)URL scale:(CGFloat)scale;
  13. @end