GoogleMobileAds Framework Reference

GADNativeAdImage

class GADNativeAdImage : NSObject

Native ad image.

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

    Declaration

    Swift

    var image: UIImage? { get }
  • The image’s URL.

    Declaration

    Swift

    var imageURL: URL? { get }
  • The image’s scale.

    Declaration

    Swift

    var scale: CGFloat { get }
  • Initializes and returns a native ad image object with the provided image.

    Declaration

    Swift

    init(image: UIImage)
  • Initializes and returns a native ad image object with the provided image URL and image scale.

    Declaration

    Swift

    init(url URL: URL, scale: CGFloat)