تحسين سلوك النقر في WKWebView

إذا كان iOS تطبيقك يستخدم WKWebView لعرض محتوى الويب، قد تحتاج إلى التفكير في تحسين سلوك النقر للأسباب التالية:

  • WKWebView لا التصفح المبوَّب. لا يفعل النقرات على الإعلانات التي تحاول فتح علامة تبويب جديدة أي شيء الافتراضي.

  • تؤدي النقرات على الإعلانات التي تفتح في علامة التبويب نفسها إلى إعادة تحميل الصفحة. قد ترغب في فرض النقرات على الإعلانات لفتحها خارج WKWebView، مثلاً في حال استضافة الفعالية H5 الألعاب وتريد والحفاظ على حالة كل لعبة.

  • لا يتيح الملء التلقائي استخدام معلومات بطاقة الائتمان في WKWebView. يمكن أن إلى انخفاض الإحالات الناجحة في مجال التجارة الإلكترونية بالنسبة إلى المعلنين، ما يؤثّر سلبًا في تحقيق الربح من محتوى الويب

يوفّر هذا الدليل الخطوات المقترَحة لتحسين سلوك النقر في الأجهزة الجوّالة. طرق عرض الويب مع الحفاظ على محتوى عرض الويب.

المتطلبات الأساسية

التنفيذ

يمكن ضبط السمة المستهدفة href لروابط الإعلانات على _blank أو _top أو _self أو _parent. باستخدام "مدير إعلانات Google"، يمكنك التحكّم في السمة المستهدفة لتكون _blank أو _top. بتعيين الإعلانات لكي تفتح في علامة تبويب جديدة أو نافذة. يمكن أن تحتوي روابط الإعلانات أيضًا على وظائف JavaScript مثل window.open(url, "_blank")

يوضّح الجدول التالي سلوك كل رابط من هذه الروابط في طريقة عرض الويب.

السمة المستهدَفة href سلوك النقر التلقائي WKWebView
target="_blank" لا تتم معالجة الرابط من خلال عرض الويب.
target="_top" إعادة تحميل الرابط في العرض الحالي للويب
target="_self" إعادة تحميل الرابط في العرض الحالي للويب
target="_parent" إعادة تحميل الرابط في العرض الحالي للويب
دالة JavaScript سلوك النقر التلقائي WKWebView
window.open(url, "_blank") لا تتم معالجة الرابط من خلال عرض الويب.

اتّبِع الخطوات التالية لتحسين سلوك النقر في WKWebView مثيل:

  1. ضبط WKUIDelegate على WKWebView مثال.

  2. اضبط WKNavigationDelegate على مثال WKWebView

  3. تحديد ما إذا كان يجب تحسين سلوك عنوان URL للنقر.

    • تحقّق مما إذا كانت السمة navigationType في الكائن WKNavigationAction هو نوع النقر الذي تريد تحسينه. يتم التحقّق من مقتطف الرمز عن .linkActivated وينطبق ذلك فقط على النقرات على رابط يحتوي على سمة href.

    • اطّلِع على targetFrame. السمة في الكائن WKNavigationAction. إذا عرضَت القيمة nil، هذا يعني يكون الهدف من التنقل نافذة جديدة. لأنّه لا يمكن لـ "WKWebView" معالجة هذه النقرات، يجب التعامل مع هذه النقرات يدويًا.

  4. حدِّد ما إذا كنت تريد فتح عنوان URL في متصفّح خارجي أم لا. SFSafariViewController، أو عرض الويب الحالي. يعرض مقتطف الرمز كيفية فتح عناوين URL أثناء مغادرة الصفحة من الموقع من خلال تقديم SFSafariViewController.

مثال على الرمز البرمجي

يعرض مقتطف الرمز التالي كيفية تحسين سلوك النقر على عرض الويب. بالنسبة على سبيل المثال، يتحقّق مما إذا كان النطاق الحالي مختلفًا عن النطاق المستهدف. هذا مجرد نهج واحد حيث يمكن أن تختلف المعايير التي تستخدمها.

Swift

import GoogleMobileAds
import SafariServices
import WebKit

class ViewController: UIViewController, WKNavigationDelegate, WKUIDelegate {

  override func viewDidLoad() {
    super.viewDidLoad()

    // ... Register the WKWebView.

    // 1. Set the WKUIDelegate on your WKWebView instance.
    webView.uiDelegate = self;
    // 2. Set the WKNavigationDelegate on your WKWebView instance.
    webView.navigationDelegate = self
  }

  // Implement the WKUIDelegate method.
  func webView(
      _ webView: WKWebView,
      createWebViewWith configuration: WKWebViewConfiguration,
      for navigationAction: WKNavigationAction,
      windowFeatures: WKWindowFeatures) -> WKWebView? {
    guard let url = navigationAction.request.url,
        let currentDomain = webView.url?.host,
        let targetDomain = url.host else { return nil }

    // 3. Determine whether to optimize the behavior of the click URL.
    if didHandleClickBehavior(
        url: url,
        currentDomain: currentDomain,
        targetDomain: targetDomain,
        navigationAction: navigationAction) {
      print("URL opened in SFSafariViewController.")
    }

    return nil
  }

  // Implement the WKNavigationDelegate method.
  func webView(
      _ webView: WKWebView,
      decidePolicyFor navigationAction: WKNavigationAction,
      decisionHandler: @escaping (WKNavigationActionPolicy) -> Void)
  {
    guard let url = navigationAction.request.url,
        let currentDomain = webView.url?.host,
        let targetDomain = url.host else { return decisionHandler(.cancel) }

    // 3. Determine whether to optimize the behavior of the click URL.
    if didHandleClickBehavior(
        url: url,
        currentDomain: currentDomain,
        targetDomain: targetDomain,
        navigationAction: navigationAction) {
      return decisionHandler(.cancel)
    }

    decisionHandler(.allow)
  }

  // Implement a helper method to handle click behavior.
  func didHandleClickBehavior(
      url: URL,
      currentDomain: String,
      targetDomain: String,
      navigationAction: WKNavigationAction) -> Bool {
    // Check if the navigationType is a link with an href attribute or
    // if the target of the navigation is a new window.
    guard navigationAction.navigationType == .linkActivated ||
      navigationAction.targetFrame == nil,
      // If the current domain does not equal the target domain,
      // the assumption is the user is navigating away from the site.
      currentDomain != targetDomain else { return false }

    // 4.  Open the URL in a SFSafariViewController.
    let safariViewController = SFSafariViewController(url: url)
    present(safariViewController, animated: true)
    return true
  }
}

Objective-C

@import GoogleMobileAds;
@import SafariServices;
@import WebKit;

@interface ViewController () <WKNavigationDelegate, WKUIDelegate>

@property(nonatomic, strong) WKWebView *webView;

@end

@implementation ViewController

- (void)viewDidLoad {
  [super viewDidLoad];

  // ... Register the WKWebView.

  // 1. Set the WKUIDelegate on your WKWebView instance.
  self.webView.uiDelegate = self;
  // 2. Set the WKNavigationDelegate on your WKWebView instance.
  self.webView.navigationDelegate = self;
}

// Implement the WKUIDelegate method.
- (WKWebView *)webView:(WKWebView *)webView
  createWebViewWithConfiguration:(WKWebViewConfiguration *)configuration
             forNavigationAction:(WKNavigationAction *)navigationAction
                  windowFeatures:(WKWindowFeatures *)windowFeatures {
  NSURL *url = navigationAction.request.URL;
  NSString *currentDomain = webView.URL.host;
  NSString *targetDomain = navigationAction.request.URL.host;

  // 3. Determine whether to optimize the behavior of the click URL.
  if ([self didHandleClickBehaviorForURL: url
      currentDomain: currentDomain
      targetDomain: targetDomain
      navigationAction: navigationAction]) {
    NSLog(@"URL opened in SFSafariViewController.");
  }

  return nil;
}

// Implement the WKNavigationDelegate method.
- (void)webView:(WKWebView *)webView
    decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction
                    decisionHandler:
                        (void (^)(WKNavigationActionPolicy))decisionHandler {
  NSURL *url = navigationAction.request.URL;
  NSString *currentDomain = webView.URL.host;
  NSString *targetDomain = navigationAction.request.URL.host;

  // 3. Determine whether to optimize the behavior of the click URL.
  if ([self didHandleClickBehaviorForURL: url
      currentDomain: currentDomain
      targetDomain: targetDomain
      navigationAction: navigationAction]) {

    decisionHandler(WKNavigationActionPolicyCancel);
    return;
  }

  decisionHandler(WKNavigationActionPolicyAllow);
}

// Implement a helper method to handle click behavior.
- (BOOL)didHandleClickBehaviorForURL:(NSURL *)url
                       currentDomain:(NSString *)currentDomain
                        targetDomain:(NSString *)targetDomain
                    navigationAction:(WKNavigationAction *)navigationAction {
  if (!url || !currentDomain || !targetDomain) {
    return NO;
  }

  // Check if the navigationType is a link with an href attribute or
  // if the target of the navigation is a new window.
  if ((navigationAction.navigationType == WKNavigationTypeLinkActivated
      || !navigationAction.targetFrame)
      // If the current domain does not equal the target domain,
      // the assumption is the user is navigating away from the site.
      && ![currentDomain isEqualToString: targetDomain]) {

     // 4.  Open the URL in a SFSafariViewController.
    SFSafariViewController *safariViewController =
        [[SFSafariViewController alloc] initWithURL:url];
    [self presentViewController:safariViewController animated:YES
        completion:nil];
    return YES;
  }

  return NO;
}

اختبار التنقّل في صفحتك

لاختبار تغييرات التنقل في الصفحة، حمّل

https://webview-api-for-ads-test.glitch.me#click-behavior-tests

إلى عرض الويب الخاص بك. انقر على كل نوع من أنواع الروابط المختلفة للتعرّف على كيفية المستخدم في تطبيقك.

وفي ما يلي بعض النقاط التي يجب التحقق منها:

  • يفتح كل رابط عنوان URL المقصود.
  • عند الرجوع إلى التطبيق، لا تتم إعادة ضبط عدّاد الصفحة الاختبارية على صفر والتحقق من أنه تم حفظ حالة الصفحة.