GoogleMobileAds Framework Reference
Stay organized with collections Save and categorize content based on your preferences.
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;
Declaration
Swift
var imageURL: URL? { get }
Objective-C
@property (nonatomic, copy, readonly, nullable) NSURL *imageURL;
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-02-04 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-04 UTC."],[[["`GADNativeAdImage` provides a way to access native ad images, including the actual image and its URL."],["It includes properties like `image`, `imageURL`, and `scale` to represent the image data."],["You can initialize a `GADNativeAdImage` instance either with a `UIImage` or with a `URL` and scale."],["If image autoloading is disabled, the `image` property will be `nil`, and you'll need to use `imageURL` to fetch it."]]],[]]