אם באפליקציה iOS נעשה שימוש
WKWebView
כדי להציג תוכן מהאינטרנט, אולי כדאי
לשקול לבצע אופטימיזציה של התנהגות הקליקים מהסיבות הבאות:
WKWebView
לא תמיכה דפדוף בכרטיסיות. קליקים על מודעות שמנסים לפתוח כרטיסייה חדשה לא מניבים תוצאות כברירת מחדל.
קליקים על מודעות שנפתחים באותה כרטיסייה טוענים מחדש את הדף. אולי כדאי לאלץ קליקים על מודעות שייפתחו מחוץ ל
WKWebView
, לדוגמה, אם אתם מארחים H5 משחקים ואנחנו רוצים לשמור על המצב של כל משחק.המילוי האוטומטי לא תומך בפרטי כרטיס אשראי ב
WKWebView
. הפעולה הזו יכולה יובילו לירידה בהמרות של מסחר אלקטרוני למפרסמים, וזה ישפיע באופן שלילי על המונטיזציה של תוכן אינטרנט.
- כניסה באמצעות חשבון Google
שאינו
יש תמיכה ב-
WKWebView
.
במדריך הזה מפורטים שלבים מומלצים לאופטימיזציה של התנהגות הקליקים בניידים תצוגות אינטרנט תוך שימור התוכן של תצוגת אינטרנט.
דרישות מוקדמות
- מבצעים את ההוראות להגדרה של תצוגת אינטרנט מותאמת אישית.
הטמעה
אפשר להגדיר לקישורים למודעות את מאפיין היעד href
כך: _blank
, _top
,
_self
או _parent
.
באמצעות Ad Manager אפשר לקבוע שמאפיין היעד יהיה _blank
או _top
על ידי הגדרת מודעות לפתיחה בכרטיסייה חדשה או
חלון.
קישורים למודעות יכולים להכיל גם פונקציות JavaScript כמו
window.open(url, "_blank")
.
הטבלה הבאה מתארת את ההתנהגות של כל אחד מהקישורים האלה בתצוגת אינטרנט.
מאפיין יעד href |
התנהגות ברירת המחדל של הקליקים WKWebView |
---|---|
target="_blank" |
תצוגת האינטרנט לא מטופלת בקישור. |
target="_top" |
טוענים מחדש את הקישור בתצוגת האינטרנט הקיימת. |
target="_self" |
טוענים מחדש את הקישור בתצוגת האינטרנט הקיימת. |
target="_parent" |
טוענים מחדש את הקישור בתצוגת האינטרנט הקיימת. |
פונקציית JavaScript | התנהגות ברירת המחדל של הקליקים WKWebView |
window.open(url, "_blank") |
תצוגת האינטרנט לא מטופלת בקישור. |
יש לבצע את השלבים הבאים כדי לבצע אופטימיזציה של התנהגות הקליקים
WKWebView
מכונה:
הגדרת
WKUIDelegate
במכשירWKWebView
מכונה.מגדירים את
WKNavigationDelegate
מופעWKWebView
.קובעים אם לבצע אופטימיזציה להתנהגות של כתובת ה-URL לקליקים.
צריך לבדוק אם הנכס
navigationType
מופעל האובייקטWKNavigationAction
הוא סוג הקליק שרוצים לבצע לו אופטימיזציה. קטע הקוד בודק למשך.linkActivated
הכלל הזה חל רק על קליקים על קישור עם המאפייןhref
.כדאי לבדוק את
targetFrame
באובייקטWKNavigationAction
. אם היא מחזירהnil
, המשמעות היא יעד הניווט הוא חלון חדש. כיWKWebView
לא יכולה לטפל אחר כך צריך לטפל בקליקים האלה באופן ידני.
להחליט אם לפתוח את כתובת ה-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 הרצויה.
- כשחוזרים לאפליקציה, המונה של דף הבדיקה לא מתאפס לאפס אימות שמצב הדף נשמר.