本篇文章教你們如何使用WKWebView去實現經常使用的一些API操做。固然,也會有如何與JS交互的實戰。javascript
OC如何給JS注入對象及JS如何給IOS發送數據css
JS調用alert、confirm、prompt時,不採用JS原生提示,而是使用iOS原生來實現html
如何監聽web內容加載進度、是否加載完成java
如何處理去跨域問題git
在建立WKWebView以前,須要先建立配置對象,用於作一些配置:github
WKWebViewConfiguration*config=[[WKWebViewConfigurationalloc]init];
複製代碼
偏好設置也沒有必須去修改它,都使用默認的就能夠了,除非你真的須要修改它:web
// 設置偏好設置
config.preferences = [[WKPreferences alloc] init];
// 默認爲0
config.preferences.minimumFontSize = 10;
// 默認認爲YES
config.preferences.javaScriptEnabled = YES;
// 在iOS上默認爲NO,表示不能自動經過窗口打開
config.preferences.javaScriptCanOpenWindowsAutomatically = NO;
複製代碼
其實咱們沒有必要去建立它,由於它根本沒有屬性和方法:objective-c
// web內容處理池,因爲沒有屬性能夠設置,也沒有方法能夠調用,不用手動建立
config.processPool = [[WKProcessPool alloc] init];
複製代碼
WKUserContentController是用於給JS注入對象的,注入對象後,JS端就可使用:跨域
window.webkit.messageHandlers.<name>.postMessage(<messageBody>)
複製代碼
來調用發送數據給iOS端,好比:ide
window.webkit.messageHandlers.AppModel.postMessage({body: '傳數據'});
複製代碼
AppModel就是咱們要注入的名稱,注入之後,就能夠在JS端調用了,傳數據統一經過body傳,能夠是多種類型,只支持NSNumber, NSString, NSDate, NSArray,NSDictionary, and NSNull類型。
下面咱們配置給JS的main frame注入AppModel名稱,對於JS端可就是對象了:
// 經過JS與webview內容交互
config.userContentController = [[WKUserContentController alloc] init];
// 注入JS對象名稱AppModel,當JS經過AppModel來調用時,
// 咱們能夠在WKScriptMessageHandler代理中接收到
[config.userContentController addScriptMessageHandler:self name:@"AppModel"];
複製代碼
全部JS調用iOS的部分,都只能夠在此處使用哦。固然咱們也能夠注入多個名稱(JS對象),用於區分功能。
經過惟一的默認構造器來建立對象:
self.webView = [[WKWebView alloc] initWithFrame:self.view.bounds
configuration:config];
[self.view addSubview:self.webView];
複製代碼
NSURL *path = [[NSBundle mainBundle] URLForResource:@"test" withExtension:@"html"];
[self.webView loadRequest:[NSURLRequest requestWithURL:path]];
複製代碼
若是須要處理web導航條上的代理處理,好比連接是否能夠跳轉或者如何跳轉,須要設置代理;而若是須要與在JS調用alert、
confirm、prompt函數時,經過JS原生來處理,而不是調用JS的alert、confirm、prompt函數,那麼須要設置UIDelegate,在得
到響應後能夠將結果反饋到JS端:
// 導航代理
self.webView.navigationDelegate = self;
// 與webview UI交互代理
self.webView.UIDelegate = self;
複製代碼
WKWebView有好多個支持KVO的屬性,這裏只是監聽loading、title、estimatedProgress屬性,分別用於判斷是否正在加載、
獲取頁面標題、當前頁面載入進度:
// 添加KVO監聽
[self.webView addObserver:self
forKeyPath:@"loading"
options:NSKeyValueObservingOptionNew
context:nil];
[self.webView addObserver:self
forKeyPath:@"title"
options:NSKeyValueObservingOptionNew
context:nil];
[self.webView addObserver:self
forKeyPath:@"estimatedProgress"
options:NSKeyValueObservingOptionNew
context:nil];
複製代碼
而後咱們就能夠實現KVO處理方法,在loading完成時,能夠注入一些JS到web中。這裏只是簡單地執行一段web中的JS函數:
#pragma mark - KVO
- (void)observeValueForKeyPath:(NSString *)keyPath】ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)context {
if ([keyPath isEqualToString:@"loading"]) {
NSLog(@"loading");
} else if ([keyPath isEqualToString:@"title"]) {
self.title = self.webView.title;
} else if ([keyPath isEqualToString:@"estimatedProgress"]) {
NSLog(@"progress: %f", self.webView.estimatedProgress);
self.progressView.progress = self.webView.estimatedProgress;
}
// 加載完成
if (!self.webView.loading) {
// 手動調用JS代碼
// 每次頁面完成都彈出來,你們能夠在測試時再打開
NSString *js = @"callJsAlert()";
[self.webView evaluateJavaScript:js completionHandler:^(id _Nullable response, NSError * _Nullable error) {
NSLog(@"response: %@ error: %@", response, error);
NSLog(@"call js alert by native");
}];
[UIView animateWithDuration:0.5 animations:^{
self.progressView.alpha = 0;
}];
}
}
複製代碼
與JS原生的alert、confirm、prompt交互,將彈出來的其實是咱們原生的窗口,而不是JS的。在獲得數據後,由原生傳回到JS:
#pragma mark - WKUIDelegate
- (void)webViewDidClose:(WKWebView *)webView {
NSLog(@"%s", __FUNCTION__);
}
// 在JS端調用alert函數時,會觸發此代理方法。
// JS端調用alert時所傳的數據能夠經過message拿到
// 在原生獲得結果後,須要回調JS,是經過completionHandler回調
- (void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(void))completionHandler {
NSLog(@"%s", __FUNCTION__);
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"alert" message:@"JS調用alert" preferredStyle:UIAlertControllerStyleAlert];
[alert addAction:[UIAlertAction actionWithTitle:@"肯定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
completionHandler();
}]];
[self presentViewController:alert animated:YES completion:NULL];
NSLog(@"%@", message);
}
// JS端調用confirm函數時,會觸發此方法
// 經過message能夠拿到JS端所傳的數據
// 在iOS端顯示原生alert獲得YES/NO後
// 經過completionHandler回調給JS端
- (void)webView:(WKWebView *)webView runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(BOOL result))completionHandler {
NSLog(@"%s", __FUNCTION__);
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"confirm" message:@"JS調用confirm" preferredStyle:UIAlertControllerStyleAlert];
[alert addAction:[UIAlertAction actionWithTitle:@"肯定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
completionHandler(YES);
}]];
[alert addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
completionHandler(NO);
}]];
[self presentViewController:alert animated:YES completion:NULL];
NSLog(@"%@", message);
}
// JS端調用prompt函數時,會觸發此方法
// 要求輸入一段文本
// 在原生輸入獲得文本內容後,經過completionHandler回調給JS
- (void)webView:(WKWebView *)webView runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(nullable NSString *)defaultText initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(NSString * __nullable result))completionHandler {
NSLog(@"%s", __FUNCTION__);
NSLog(@"%@", prompt);
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"textinput" message:@"JS調用輸入框" preferredStyle:UIAlertControllerStyleAlert];
[alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
textField.textColor = [UIColor redColor];
}];
[alert addAction:[UIAlertAction actionWithTitle:@"肯定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
completionHandler([[alert.textFields lastObject] text]);
}]];
[self presentViewController:alert animated:YES completion:NULL];
}
複製代碼
###WKNavigationDelegate
若是須要處理web導航操做,好比連接跳轉、接收響應、在導航開始、成功、失敗等時要作些處理,就能夠經過實現相關的代理方法:
#pragma mark - WKNavigationDelegate
// 請求開始前,會先調用此代理方法
// 與UIWebView的
// - (BOOL)webView:(UIWebView *)webView
// shouldStartLoadWithRequest:(NSURLRequest *)request
// navigationType:(UIWebViewNavigationType)navigationType;
// 類型,在請求先判斷能不能跳轉(請求)
- (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler {
NSString *hostname = navigationAction.request.URL.host.lowercaseString;
if (navigationAction.navigationType == WKNavigationTypeLinkActivated&& ![hostname containsString:@".baidu.com"]) {
// 對於跨域,須要手動跳轉
[[UIApplication sharedApplication] openURL:navigationAction.request.URL];
// 不容許web內跳轉
decisionHandler(WKNavigationActionPolicyCancel);
} else {
self.progressView.alpha = 1.0;
decisionHandler(WKNavigationActionPolicyAllow);
}
NSLog(@"%s", __FUNCTION__);
}
// 在響應完成時,會回調此方法
// 若是設置爲不容許響應,web內容就不會傳過來
- (void)webView:(WKWebView *)webView decidePolicyForNavigationResponse:(WKNavigationResponse *)navigationResponse decisionHandler:(void (^)(WKNavigationResponsePolicy))decisionHandler {
decisionHandler(WKNavigationResponsePolicyAllow);
NSLog(@"%s", __FUNCTION__);
}
// 開始導航跳轉時會回調
- (void)webView:(WKWebView *)webView didStartProvisionalNavigation:(null_unspecified WKNavigation *)navigation {
NSLog(@"%s", __FUNCTION__);
}
// 接收到重定向時會回調
- (void)webView:(WKWebView *)webView didReceiveServerRedirectForProvisionalNavigation:(null_unspecified WKNavigation *)navigation {
NSLog(@"%s", __FUNCTION__);
}
// 導航失敗時會回調
- (void)webView:(WKWebView *)webView didFailProvisionalNavigation:(null_unspecified WKNavigation *)navigation withError:(NSError *)error {
NSLog(@"%s", __FUNCTION__);
}
// 頁面內容到達main frame時回調
- (void)webView:(WKWebView *)webView didCommitNavigation:(null_unspecified WKNavigation *)navigation {
NSLog(@"%s", __FUNCTION__);
}
// 導航完成時,會回調(也就是頁面載入完成了)
- (void)webView:(WKWebView *)webView didFinishNavigation:(null_unspecified WKNavigation *)navigation {
NSLog(@"%s", __FUNCTION__);
}
// 導航失敗時會回調
- (void)webView:(WKWebView *)webView didFailNavigation:(null_unspecified WKNavigation *)navigation withError:(NSError *)error {
}
// 對於HTTPS的都會觸發此代理,若是不要求驗證,傳默認就行
// 若是須要證書驗證,與使用AFN進行HTTPS證書驗證是同樣的
- (void)webView:(WKWebView *)webView didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *__nullable credential))completionHandler {
NSLog(@"%s", __FUNCTION__);
completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
}
// 9.0才能使用,web內容處理中斷時會觸發
- (void)webViewWebContentProcessDidTerminate:(WKWebView *)webView {
NSLog(@"%s", __FUNCTION__);
}
複製代碼
<!DOCTYPE html>
<html>
<head>
<title>iOS and Js</title>
<style type="text/css">
* {
font-size: 40px;
}
</style>
</head>
<body>
<div style="margin-top: 100px">
<h1>Test how to use objective-c call js</h1><br/>
<div><input type="button" value="call js alert" onclick="callJsAlert()"></div>
<br/>
<div><input type="button" value="Call js confirm" onclick="callJsConfirm()"></div><br/>
</div>
<br/>
<div>
<div><input type="button" value="Call Js prompt " onclick="callJsInput()"></div><br/>
<div>Click me here: <a href="http://www.baidu.com">Jump to Baidu</a></div>
</div>
<br/>
複製代碼
<script type="text/javascript">
function callJsAlert() {
alert('Objective-C call js to show alert');
window.webkit.messageHandlers.AppModel.postMessage({body: 'call js alert in js'});
}
function callJsConfirm() {
if (confirm('confirm', 'Objective-C call js to show confirm')) {
document.getElementById('jsParamFuncSpan').innerHTML
= 'true';
} else {
document.getElementById('jsParamFuncSpan').innerHTML
= 'false';
}
// AppModel是咱們所注入的對象
window.webkit.messageHandlers.AppModel.postMessage({body: 'call js confirm in js'});
}
function callJsInput() {
var response = prompt('Hello', 'Please input your name:');
document.getElementById('jsParamFuncSpan').innerHTML = response;
// AppModel是咱們所注入的對象
window.webkit.messageHandlers.AppModel.postMessage({body: response});
}
</script>
</body>
</html>
複製代碼
下載源代碼:WKWebViewH5ObjCDemo