Nativo avanzado

Cómo mostrar un formato de anuncio nativo definido por el sistema

Cuando se cargue un anuncio nativo, tu app recibirá un objeto de anuncio nativo a través de uno de los mensajes de protocolo GADAdLoaderDelegate. Tu app luego se encargará de mostrar el anuncio (aunque no necesariamente debe hacerlo de inmediato). Para facilitar la visualización de formatos de anuncios definidos por el sistema, el SDK ofrece algunos recursos útiles.

GADNativeAdView

Para GADNativeAd, hay una clase correspondiente de "vista de anuncio": GADNativeAdView. Esta clase de vista de anuncio es un UIView que los publicadores deben usar para mostrar el anuncio. Por ejemplo, un solo GADNativeAdView puede mostrar una sola instancia de un GADNativeAd. Cada uno de los objetos UIView que se usan para mostrar los recursos de ese anuncio debe ser una vista secundaria de ese objeto GADNativeAdView.

Si mostraras un anuncio en un UITableView, por ejemplo, la jerarquía de vistas de una de las celdas podría tener el siguiente aspecto:

La clase GADNativeAdView también proporciona IBOutlets, que se usa para registrar la vista que se usa para cada recurso individual, y un método para registrar el objeto GADNativeAd. Registrar las vistas de esta manera permite que el SDK maneje de manera automática tareas como las siguientes:

  • Grabación de clics
  • Registro de impresiones (cuando se puede ver el primer píxel en la pantalla).
  • Mostrar la superposición de AdChoices

Superposición de AdChoices

En el caso de los anuncios nativos indirectos (publicados a través del reabastecimiento de Ad Manager o a través de Ad Exchange o AdSense), el SDK agrega una superposición de AdChoices. Deja espacio en la esquina que prefieras de la vista de tu anuncio nativo para el logotipo de AdChoices que se inserta automáticamente. Además, asegúrate de que la superposición de AdChoices se coloque en contenido que permita que el ícono se vea fácilmente. Para obtener más información sobre el aspecto y la función de la superposición, consulta los lineamientos de implementación de anuncios programáticos nativos.

Atribución de anuncios para anuncios programáticos nativos

Cuando muestres anuncios nativos programáticos, debes mostrar una atribución de anuncios para indicar que la vista es un anuncio. Obtén más información en nuestros lineamientos de políticas.

Ejemplo de código

Veamos cómo mostrar anuncios nativos con vistas cargadas de forma dinámica desde archivos xib. Este enfoque puede resultar muy útil cuando se usa GADAdLoaders configurado para solicitar varios formatos.

Diseña los UIViews

El primer paso es distribuir el UIViews que mostrará los recursos de anuncios nativos. Puedes hacerlo en Interface Builder como lo harías cuando creas cualquier otro archivo xib. Así es como podría verse el diseño de un anuncio nativo:

Anota el valor de la clase personalizada en la parte superior derecha de la imagen. Está configurado en

GADNativeAdView: Esta es la clase de vista de anuncio que se usa para mostrar un GADNativeAd.

También deberás configurar la clase personalizada para el GADMediaView, que se usa para mostrar el video o la imagen del anuncio.

Una vez que las vistas estén preparadas y que hayas asignado la clase ad view correcta al diseño, vincula las salidas de recursos de la ad view al UIViews que hayas creado. A continuación, se muestra cómo puedes vincular las salidas de recursos de la vista de anuncio al UIViews creado para un anuncio:

En el panel de salida, los tomacorrientes de GADNativeAdView se vincularon al UIViews distribuido en el Interface Builder. Esto permite que el SDK sepa qué UIView muestra qué recurso. También es importante recordar que estos medios representan las vistas en las que se puede hacer clic en el anuncio.

Cómo mostrar el anuncio

Una vez que el diseño se haya completado y las salidas se hayan vinculado, agrega el siguiente código a tu app para que muestre un anuncio una vez que se cargue:

Swift

// Mark: - GADNativeAdLoaderDelegate
func adLoader(_ adLoader: GADAdLoader, didReceive nativeAd: GADNativeAd) {
  print("Received native ad: \(nativeAd)")
  refreshAdButton.isEnabled = true
  // Create and place ad in view hierarchy.
  let nibView = Bundle.main.loadNibNamed("NativeAdView", owner: nil, options: nil)?.first
  guard let nativeAdView = nibView as? GADNativeAdView else {
    return
  }
  setAdView(nativeAdView)

  // Set ourselves as the native ad delegate to be notified of native ad events.
  nativeAd.delegate = self

  // Populate the native ad view with the native ad assets.
  // The headline and mediaContent are guaranteed to be present in every native ad.
  (nativeAdView.headlineView as? UILabel)?.text = nativeAd.headline
  nativeAdView.mediaView?.mediaContent = nativeAd.mediaContent

  // This app uses a fixed width for the GADMediaView and changes its height to match the aspect
  // ratio of the media it displays.
  if let mediaView = nativeAdView.mediaView, nativeAd.mediaContent.aspectRatio > 0 {
    let heightConstraint = NSLayoutConstraint(
      item: mediaView,
      attribute: .height,
      relatedBy: .equal,
      toItem: mediaView,
      attribute: .width,
      multiplier: CGFloat(1 / nativeAd.mediaContent.aspectRatio),
      constant: 0)
    heightConstraint.isActive = true
  }

  // These assets are not guaranteed to be present. Check that they are before
  // showing or hiding them.
  (nativeAdView.bodyView as? UILabel)?.text = nativeAd.body
  nativeAdView.bodyView?.isHidden = nativeAd.body == nil

  (nativeAdView.callToActionView as? UIButton)?.setTitle(nativeAd.callToAction, for: .normal)
  nativeAdView.callToActionView?.isHidden = nativeAd.callToAction == nil

  (nativeAdView.iconView as? UIImageView)?.image = nativeAd.icon?.image
  nativeAdView.iconView?.isHidden = nativeAd.icon == nil

  (nativeAdView.starRatingView as? UIImageView)?.image = imageOfStars(
    fromStarRating: nativeAd.starRating)
  nativeAdView.starRatingView?.isHidden = nativeAd.starRating == nil

  (nativeAdView.storeView as? UILabel)?.text = nativeAd.store
  nativeAdView.storeView?.isHidden = nativeAd.store == nil

  (nativeAdView.priceView as? UILabel)?.text = nativeAd.price
  nativeAdView.priceView?.isHidden = nativeAd.price == nil

  (nativeAdView.advertiserView as? UILabel)?.text = nativeAd.advertiser
  nativeAdView.advertiserView?.isHidden = nativeAd.advertiser == nil

  // For the SDK to process touch events properly, user interaction should be disabled.
  nativeAdView.callToActionView?.isUserInteractionEnabled = false

  // Associate the native ad view with the native ad object. This is
  // required to make the ad clickable.
  // Note: this should always be done after populating the ad views.
  nativeAdView.nativeAd = nativeAd
}

SwiftUI

Crea un modelo de vista

Crea un modelo de vista que cargue un anuncio nativo y publique los cambios de datos del anuncio nativo:

import GoogleMobileAds

class NativeAdViewModel: NSObject, ObservableObject, GADNativeAdLoaderDelegate {
  @Published var nativeAd: GADNativeAd?
  private var adLoader: GADAdLoader!

  func refreshAd() {
    adLoader = GADAdLoader(
      adUnitID: "ca-app-pub-3940256099942544/3986624511",
      // The UIViewController parameter is optional.
      rootViewController: nil,
      adTypes: [.native], options: nil)
    adLoader.delegate = self
    adLoader.load(GADRequest())
  }

  func adLoader(_ adLoader: GADAdLoader, didReceive nativeAd: GADNativeAd) {
    // Native ad data changes are published to its subscribers.
    self.nativeAd = nativeAd
    nativeAd.delegate = self
  }

  func adLoader(_ adLoader: GADAdLoader, didFailToReceiveAdWithError error: Error) {
    print("\(adLoader) failed with error: \(error.localizedDescription)")
  }
}

Crea un UIViewRepresentable

Crea un UIViewRepresentable para GADNativeView y suscríbete a los cambios de datos en la clase ViewModel:

private struct NativeAdView: UIViewRepresentable {
  typealias UIViewType = GADNativeAdView

  // Observer to update the UIView when the native ad value changes.
  @ObservedObject var nativeViewModel: NativeAdViewModel

  func makeUIView(context: Context) -> GADNativeAdView {
    return
      Bundle.main.loadNibNamed(
        "NativeAdView",
        owner: nil,
        options: nil)?.first as! GADNativeAdView
  }

  func updateUIView(_ nativeAdView: GADNativeAdView, context: Context) {
    guard let nativeAd = nativeViewModel.nativeAd else { return }

    // Each UI property is configurable using your native ad.
    (nativeAdView.headlineView as? UILabel)?.text = nativeAd.headline

    nativeAdView.mediaView?.mediaContent = nativeAd.mediaContent

    (nativeAdView.bodyView as? UILabel)?.text = nativeAd.body

    (nativeAdView.iconView as? UIImageView)?.image = nativeAd.icon?.image

    (nativeAdView.starRatingView as? UIImageView)?.image = imageOfStars(from: nativeAd.starRating)

    (nativeAdView.storeView as? UILabel)?.text = nativeAd.store

    (nativeAdView.priceView as? UILabel)?.text = nativeAd.price

    (nativeAdView.advertiserView as? UILabel)?.text = nativeAd.advertiser

    (nativeAdView.callToActionView as? UIButton)?.setTitle(nativeAd.callToAction, for: .normal)

    // For the SDK to process touch events properly, user interaction should be disabled.
    nativeAdView.callToActionView?.isUserInteractionEnabled = false

    // Associate the native ad view with the native ad object. This is required to make the ad
    // clickable.
    // Note: this should always be done after populating the ad views.
    nativeAdView.nativeAd = nativeAd
  }

Agrega la vista a la jerarquía de vistas

En el siguiente código, se muestra cómo agregar UIViewRepresentable a la jerarquía de vistas:

struct NativeContentView: View {
  // Single source of truth for the native ad data.
  @StateObject private var nativeViewModel = NativeAdViewModel()

  var body: some View {
    ScrollView {
      VStack(spacing: 20) {
        NativeAdView(nativeViewModel: nativeViewModel)  // Updates when the native ad data changes.
          .frame(minHeight: 300)  // minHeight determined from xib.

Objective-C

#pragma mark GADNativeAdLoaderDelegate implementation

- (void)adLoader:(GADAdLoader *)adLoader didReceiveNativeAd:(GADNativeAd *)nativeAd {
  NSLog(@"Received native ad: %@", nativeAd);
  self.refreshButton.enabled = YES;

  // Create and place ad in view hierarchy.
  GADNativeAdView *nativeAdView =
      [[NSBundle mainBundle] loadNibNamed:@"NativeAdView" owner:nil options:nil].firstObject;
  [self setAdView:nativeAdView];

  // Set the mediaContent on the GADMediaView to populate it with available
  // video/image asset.
  nativeAdView.mediaView.mediaContent = nativeAd.mediaContent;

  // Populate the native ad view with the native ad assets.
  // The headline is present in every native ad.
  ((UILabel *)nativeAdView.headlineView).text = nativeAd.headline;

  // These assets are not guaranteed to be present. Check that they are before
  // showing or hiding them.
  ((UILabel *)nativeAdView.bodyView).text = nativeAd.body;
  nativeAdView.bodyView.hidden = nativeAd.body ? NO : YES;

  [((UIButton *)nativeAdView.callToActionView)setTitle:nativeAd.callToAction
                                              forState:UIControlStateNormal];
  nativeAdView.callToActionView.hidden = nativeAd.callToAction ? NO : YES;

    ((UIImageView *)nativeAdView.iconView).image = nativeAd.icon.image;
  nativeAdView.iconView.hidden = nativeAd.icon ? NO : YES;

  ((UIImageView *)nativeAdView.starRatingView).image = [self imageForStars:nativeAd.starRating];
  nativeAdView.starRatingView.hidden = nativeAd.starRating ? NO : YES;

  ((UILabel *)nativeAdView.storeView).text = nativeAd.store;
  nativeAdView.storeView.hidden = nativeAd.store ? NO : YES;

  ((UILabel *)nativeAdView.priceView).text = nativeAd.price;
  nativeAdView.priceView.hidden = nativeAd.price ? NO : YES;

  ((UILabel *)nativeAdView.advertiserView).text = nativeAd.advertiser;
  nativeAdView.advertiserView.hidden = nativeAd.advertiser ? NO : YES;

  // In order for the SDK to process touch events properly, user interaction
  // should be disabled.
  nativeAdView.callToActionView.userInteractionEnabled = NO;

  // Associate the native ad view with the native ad object. This is
  // required to make the ad clickable.
  nativeAdView.nativeAd = nativeAd;
}

Ejemplo completo en GitHub

Sigue el vínculo correspondiente de GitHub para ver el ejemplo completo de integración de anuncios nativos en Swift, SwiftUI y Objective-C.

Ejemplo de renderización personalizada de Swift Ejemplo de anuncios nativos de SwiftUI Ejemplo de renderización personalizada de Objective-C

GADMediaView

Los recursos de imagen y video se muestran a los usuarios a través de GADMediaView. Este es un UIView que se puede definir en un archivo xib o construir de forma dinámica. Se debe colocar dentro de la jerarquía de vistas de un GADNativeAdView, como con cualquier otra vista de recursos.

Al igual que con todas las vistas de recursos, el contenido de la vista de medios debe propagarse. Esto se establece con la propiedad mediaContent en GADMediaView. La propiedad mediaContent de GADNativeAd contiene contenido multimedia que se puede pasar a un GADMediaView.

Este es un fragmento del ejemplo de renderización personalizada (Swift | Objective-C) que muestra cómo propagar el GADMediaView con los recursos de anuncios nativos usando GADMediaContent de GADNativeAd:

Swift

nativeAdView.mediaView?.mediaContent = nativeAd.mediaContent

Objective-C

nativeAdView.mediaView.mediaContent = nativeAd.mediaContent;

Asegúrate de que, en el archivo del compilador de interfaz de tu vista de anuncio nativo, la clase personalizada de las vistas esté configurada como GADMediaView y la hayas conectado al tomacorriente mediaView.

Cómo cambiar el modo de contenido de imagen

La clase GADMediaView respeta la propiedad UIView contentMode cuando muestra imágenes. Si quieres cambiar la forma en que se escala una imagen en GADMediaView, establece el UIViewContentMode correspondiente en la propiedad contentMode de GADMediaView para lograrlo.

Por ejemplo, para completar el GADMediaView cuando se muestra una imagen (el anuncio no tiene video), haz lo siguiente:

Swift

nativeAdView.mediaView?.contentMode = .aspectFill

Objective-C

nativeAdView.mediaView.contentMode = UIViewContentModeAspectFill;

GADMediaContent

La clase GADMediaContent contiene los datos relacionados con el contenido multimedia del anuncio nativo, que se muestra con la clase GADMediaView. Cuando se establece en la propiedad mediaContent de GADMediaView:

  • Si hay un activo de video disponible, se almacena en búfer y comienza a reproducirse dentro de GADMediaView. Para saber si un activo de video está disponible, verifica hasVideoContent.

  • Si el anuncio no contiene un recurso de video, se descarga el recurso mainImage y se coloca dentro de GADMediaView.

Próximos pasos

Obtén más información sobre la privacidad del usuario.