מודעות מותאמות מסוג Advanced

הצגת פורמט של מודעה מותאמת שמוגדרת על ידי המערכת

כשמודעה מותאמת נטענת, האפליקציה מקבלת אובייקט של מודעה מותאמת באמצעות אחת מהודעות הפרוטוקול GADAdLoaderDelegate. לאחר מכן האפליקציה אחראית להציג את המודעה (אבל לא בהכרח לעשות זאת מיד). כדי להקל על הצגת פורמטים של מודעות שהוגדרו על ידי המערכת, ערכת ה-SDK כוללת מספר במשאבי אנוש.

GADNativeAdView

ל-GADNativeAd יש גם את הכיתה המתאימה 'תצוגת מודעה': GADNativeAdView. סיווג התצוגה של המודעה הוא UIView שבעלי תוכן דיגיטלי צריכים להשתמש בו כדי להציג את המודעה. למשל, GADNativeAdView יחיד יכול להציג מופע יחיד של GADNativeAd. כל אחד מ-UIView האובייקטים ששימש להצגת המודעה הנכסים צריכים להיות תצוגות משנה של אובייקט GADNativeAdView הזה.

לדוגמה, אם הוצגה מודעה בUITableView, היררכיית התצוגה של אחד מהתאים עשויה להיראות כך:

הכיתה GADNativeAdView מספקת גם IBOutlets שמשמש לרישום את התצוגה המפורטת שבה נעשה שימוש לכל נכס בנפרד, ושיטה לרישום GADNativeAd לאובייקט עצמו. רישום התצוגות בדרך הזו מאפשר ל-SDK: לטפל במשימות כמו:

  • מתבצע תיעוד של קליקים.
  • תיעוד חשיפות (כשהפיקסל הראשון גלוי במסך).
  • הצגת שכבת-העל של AdChoices.

שכבת-העל של AdChoices

במודעות מותאם אישית עקיפות (שמוצגות דרך השלמה חוזרת של Ad Manager או דרך Ad Exchange או AdSense), שכבת-על של AdChoices מתווספת על ידי ה-SDK. משאירים מקום בפינה המועדפת בתצוגת המודעה המוטמעת כדי להציג את הלוגו של AdChoices שיתווסף באופן אוטומטי. בנוסף, חשוב לוודא שהשכבה העליונה של AdChoices ממוקמת על גבי תוכן שמאפשר להבחין בסמל בקלות. למידע נוסף על המראה והתפקוד של שכבת-העל, אפשר לעיין הנחיות להטמעה של מודעות מותאמות פרוגרמטיות.

שיוך מודעות למודעות מותאמות פרוגרמטית

כשמציגים מודעות מותאמות פרוגרמטיות, צריך להציג שיוך מודעה כדי לציין שהתצוגה היא מודעה. מידע נוסף זמין בהנחיות המדיניות.

קוד לדוגמה

נראה איך מציגים מודעות מותאמות באמצעות תצוגות שנטענות באופן דינמי מקובצי XIB. זוהי גישה שימושית מאוד כשמשתמשים ב-GADAdLoaders שהוגדרה לבקש כמה פורמטים.

סידור תצוגות ה-UIView

השלב הראשון הוא פריסה של UIViews שיציגו נכסים שמצורפים למודעות מותאמות. אפשר לעשות זאת ב-Interface Builder כמו שיוצרים כל קובץ xib אחר. כך הפריסה של מודעת נייטיב המודעה יכולה להיראות:

שימו לב לערך של Custom Class בפינה השמאלית העליונה של התמונה. ההגדרה היא

GADNativeAdView. זוהי הכיתה של תצוגת המודעה שמשמשת להצגת GADNativeAd.

צריך גם להגדיר את הכיתה בהתאמה אישית של GADMediaView, שמשמשת להצגת הסרטון או התמונה של המודעה.

לאחר הצגת הצפיות והקציתם את הסיווג המתאים של צפיות במודעות הפריסה, צריך לקשר את שקעי הנכסים בתצוגת המודעה אל UIViews שיצרת. כך מקשרים את שקעי הנכסים הדיגיטליים בתצוגת המודעה אל UIViews שנוצרו למודעה:

בחלונית היציאות, היציאות ב-GADNativeAdView מקושרות ל-UIViews שמתוכנן ב-Interface Builder. כך מערכת ה-SDK תדע איזה נכס מוצג באיזה UIView. חשוב גם לזכור שהפלטפורמות האלה מייצגות את התצוגות שאפשר ללחוץ עליהן במודעה.

הצגת המודעה

אחרי השלמת הפריסה וחיבור השקעים, צריך להוסיף את הקוד הבא לאפליקציה שמציגה מודעה לאחר שהיא נטענת:

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

יצירת מודל תצוגה

יצירת מודל תצוגה שטוען מודעה מותאמת ומפרסמים את נתוני המודעות המותאמות שינויים:

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)")
  }
}

יצירת UIViewRepresentable

לכתוב UIViewRepresentable למשך GADNativeView, ולהירשם לשינויים בנתוניםViewModel class:

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
  }

הוספת התצוגה להיררכיית התצוגות

הקוד הבא מדגים הוספה של UIViewRepresentable להיררכיית התצוגה:

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;
}

הקישור המלא ב-GitHub

בואו לראות את הדוגמה המלאה של שילוב מודעות מותאמות ב-Swift, ב-SwiftUI וב- כדי לעשות את זה, לוחצים על הקישור המתאים ב-GitHub.

דוגמה לעיבוד מותאם אישית ב-Swift דוגמה למודעות מותאמות ב-SwiftUI דוגמה לעיבוד מותאם אישית ב-Objective-C

GADMediaView

נכסי תמונות וסרטונים מוצגים למשתמשים דרך GADMediaView. זהו UIView שאפשר להגדיר בקובץ xib או ליצור אותו באופן דינמי. צריך למקם אותו בהיררכיית התצוגות של GADNativeAdView, כמו כל תצוגה מפורטת אחרת של נכס.

בדומה לכל הצפיות בנכסים, תצוגת המדיה צריכה לכלול את התוכן שלה מאוכלס. הוא מוגדר באמצעות mediaContent בנכס GADMediaView. mediaContent נכס של GADNativeAd מכיל תוכן מדיה שאפשר להעביר GADMediaView.

הנה קטע טקסט מתוך דוגמה לעיבוד מותאם אישית (Swift | Objective-C) שמראה איך לאכלס את GADMediaView בנכסי המודעות המותאמות באמצעות GADMediaContent מ-GADNativeAd:

Swift

nativeAdView.mediaView?.mediaContent = nativeAd.mediaContent

Objective-C

nativeAdView.mediaView.mediaContent = nativeAd.mediaContent;

מוודאים שבקובץ ה-builder של הממשק של תצוגת המודעה המותאמת אישית, מגדירים את הכיתה בהתאמה אישית של התצוגות כ-GADMediaView ומחברים אותה לשקע mediaView.

שינוי מצב תוכן התמונה

הכיתה GADMediaView מתייחסת למאפיין UIView contentMode כשמציגים תמונות. כדי לשנות את אופן התאמת התמונה ב-GADMediaView, מגדירים את הערך המתאים של UIViewContentMode בנכס contentMode של GADMediaView.

לדוגמה, כדי למלא את השדה GADMediaView כשמוצגת תמונה (למודעה אין וידאו):

Swift

nativeAdView.mediaView?.contentMode = .aspectFill

Objective-C

nativeAdView.mediaView.contentMode = UIViewContentModeAspectFill;

GADMediaContent

GADMediaContent מכילה את הנתונים הקשורים לתוכן המדיה של המודעה המותאמת, מוצגים באמצעות המחלקה GADMediaView. כשהיא מוגדרת במאפיין GADMediaView mediaContent:

  • אם נכס הווידאו זמין, הוא נשמר במטמון ומתחיל לפעול בתוך GADMediaView. כדי לדעת אם נכס הווידאו זמין, אפשר לבדוק hasVideoContent

  • אם המודעה לא מכילה נכס וידאו, תתבצע הורדה של הנכס מסוג mainImage והוצבו בתוך GADMediaView במקום זאת.

השלבים הבאים

מידע נוסף על פרטיות המשתמשים