GoogleMobileAds Framework Reference

GADNativeAdImage

@interface GADNativeAdImage : NSObject

Native ad image.

  • The image. If image autoloading is disabled, this property will be nil.

    Declaration

    Objective-C

    @property (readonly, strong, nonatomic, nullable) UIImage *image;
  • The image’s URL.

    Declaration

    Objective-C

    @property (readonly, copy, nonatomic, nullable) NSURL *imageURL;
  • The image’s scale.

    Declaration

    Objective-C

    @property (readonly, assign, nonatomic) CGFloat scale;
  • Initializes and returns a native ad image object with the provided image.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithImage:(nonnull UIImage *)image;
  • Initializes and returns a native ad image object with the provided image URL and image scale.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithURL:(nonnull NSURL *)URL scale:(CGFloat)scale;