AI-generated Key Takeaways
-
GADNativeAdImage
provides a way to access native ad images, including the actual image and its URL. -
It offers properties for accessing the image (
image
), the image URL (imageURL
), and the image scale (scale
). -
Developers can initialize a
GADNativeAdImage
instance using either aUIImage
directly or by providing an image URL and scale. -
When image autoloading is disabled, the
image
property of aGADNativeAdImage
object will benil
, necessitating the use of theimageURL
for retrieving the image.
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;