To discuss and provide feedback on our products, join the official AdMob Discord channel in the Google Advertising and Measurement Community server.

GoogleMobileAds Framework Reference

  • GADNativeAdImage is an object representing a native ad image.

  • It provides properties to access the image itself, its URL, and its scale.

  • You can initialize a GADNativeAdImage with either a UIImage or a URL and scale.

GADNativeAdImage


@interface GADNativeAdImage : NSObject

Native ad image.

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

    Declaration

    Swift

    var image: UIImage? { get }

    Objective-C

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

    Declaration

    Swift

    var imageURL: URL? { get }

    Objective-C

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

    Declaration

    Swift

    var scale: CGFloat { get }

    Objective-C

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

    Declaration

    Swift

    init(image: UIImage)

    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

    Swift

    init(url URL: URL, scale: CGFloat)

    Objective-C

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

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年08月20日 UTC.