अगर आपका 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
इंस्टेंस:
अपने
WKWebView
परWKUIDelegate
सेट करें इंस्टेंस.अपने डिवाइस पर
WKNavigationDelegate
सेट करेंWKWebView
इंस्टेंस.webView(_:decidePolicyFor:decisionHandler:)
लागू करें.
तय करें कि क्लिक यूआरएल के व्यवहार को ऑप्टिमाइज़ करना है या नहीं.
देखें कि
navigationType
प्रॉपर्टी चालू है या नहींWKNavigationAction
ऑब्जेक्ट क्लिक टाइप को ऑप्टिमाइज़ करना है. कोड स्निपेट, पिछले टेक्स्ट की जांच करता है.linkActivated
के लिए यह सुविधा, सिर्फ़href
एट्रिब्यूट वाले लिंक पर होने वाले क्लिक पर लागू होती है.targetFrame
देखें प्रॉपर्टी कोWKNavigationAction
ऑब्जेक्ट पर रखें. अगर यहnil
दिखाता है, तो इसका मतलब है का लक्ष्य एक नई विंडो है.WKWebView
यह हैंडल नहीं कर सकता तो ये क्लिक मैन्युअल रूप से हैंडल किए जाने चाहिए.
तय करें कि यूआरएल को बाहरी ब्राउज़र में खोलना है या नहीं.
SFSafariViewController
या मौजूदा वेब व्यू. कोड स्निपेट, पेज छोड़कर जाने वाले यूआरएल को खोलने का तरीका बताता है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
अपने वेब व्यू में. अलग-अलग तरह के लिंक पर क्लिक करके देखें कि वे आपके ऐप्लिकेशन के साथ कैसे व्यवहार करना चाहिए.
यहां जांच करने योग्य कुछ बातें बताई गई हैं:
- हर लिंक सही यूआरएल खोलता है.
- ऐप्लिकेशन पर वापस लौटने पर, परीक्षण पेज का काउंटर शून्य पर रीसेट नहीं होता है पुष्टि करने के लिए पेज की स्थिति को सुरक्षित रखा गया है.