GADNativeAdImage.h 524 B

1234567891011121314151617181920212223
  1. //
  2. // GADNativeAdImage.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2015 Google Inc. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import <UIKit/UIKit.h>
  9. /// Native ad image.
  10. @interface GADNativeAdImage : NSObject
  11. /// The image. If image autoloading is disabled, this property will be nil.
  12. @property(nonatomic, readonly, strong) UIImage *image;
  13. /// The image's URL.
  14. @property(nonatomic, readonly, strong) NSURL *imageURL;
  15. /// The image's scale.
  16. @property(nonatomic, readonly, assign) CGFloat scale;
  17. @end