作者:iOS_xuanhe
連結:https://www.jianshu.com/p/10ee497d905f
iOS8以後,Apple公司推出了WKWebView,對比之前的UIWebView不論是處理速度還是記憶體效能,都有了大幅度的提升!
那麼下麵我就分享一下WKWebView與JS的互動。
首先使用WKWebView.你需要匯入WebKit #import
然後初始化一個WKWebView,設定代理,並且執行代理的方法,在網頁載入成功的時候,我們會呼叫一些JS程式碼對網頁進行設定。
WKWebView的代理一共有三個:
WKUIDelegate、WKNavigationDelegate、WKScriptMessageHandler
1、WKWebView呼叫JS方法
/**
iOS呼叫js裡的navButtonAction方法並傳入兩個引數
@param 'Xuanhe' 傳入的引數
@param 25 傳入的引數
@return completionHandler 回呼
*/
[self.webView evaluateJavaScript:@"navButtonAction('Xuanhe',18)" completionHandler:^(id _Nullable response, NSError * _Nullable error) {
NSLog(@"response:%@,error:%@",response,error);
}];
網頁載入完成
//網頁載入完成
-(void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation{
//設定JS
NSString *js = @"document.getElementsByTagName('h1')[0].innerText";
//執行JS
[webView evaluateJavaScript:js completionHandler:^(id _Nullable response, NSError * _Nullable error) {
NSLog(@"value: %@ error: %@", response, error);
}];
}
透過以上操作就成功獲取到h1標簽的文字內容了。如果報錯,可以透過error進行相應的錯誤處理。
2、載入JS程式碼
建立WKWebView,併在建立時向JS寫入內容。
WKWebViewConfiguration *config = [[WKWebViewConfiguration alloc] init];
WKWebView *webView = [[WKWebView alloc] initWithFrame:CGRectMake(0, kNavBarH, kScreenW, kScreenH-kNavBarH) configuration:config];
webView.navigationDelegate = self;
webView.UIDelegate = self;
//獲取HTML背景關係的第一個h2標簽,並寫入內容
NSString *js = @”document.getElementsByTagName(‘h2’)[0].innerText = ‘這是一個iOS寫入的方法'”;
WKUserScript*script = [[WKUserScript alloc] initWithSource:js injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];
[config.userContentController addUserScript:script];
[self.view addSubview:webView];
呼叫JS方法:
[[webView configuration].userContentController addScriptMessageHandler:self name:@"show"];
遵循代理WKScriptMessageHandler後,呼叫JS的方法show;
實現WKScriptMessageHandler代理方法,呼叫JS方法後的回呼,可以獲取到方法名,以及傳遞的資料:
//js傳遞過來的資料
-(void)userContentController:(WKUserContentController *)userContentController didReceiveScriptMessage:(WKScriptMessage *)message
{
NSLog(@"%@",message.name);//方法名
NSLog(@"%@",message.body);//傳遞的資料
}
獲取JS彈窗資訊
遵循WKUIDelegate代理,實現相關代理方法:
// alert
//此方法作為js的alert方法介面的實現,預設彈出視窗應該只有提示資訊及一個確認按鈕,當然可以新增更多按鈕以及其他內容,但是並不會起到什麼作用
//點選確認按鈕的相應事件需要執行completionHandler,這樣js才能繼續執行
////引數 message為 js 方法 alert() 中的
-(void)webView:(WKWebView *)webView runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(void))completionHandler{
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:message?:@"" preferredStyle:UIAlertControllerStyleAlert];
[alertController addAction:([UIAlertAction actionWithTitle:@"確認" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
completionHandler();
}])];
[self presentViewController:alertController animated:YES completion:nil];
}
// confirm
//作為js中confirm介面的實現,需要有提示資訊以及兩個相應事件, 確認及取消,並且在completionHandler中回傳相應結果,確認傳回YES, 取消傳回NO
//引數 message為 js 方法 confirm() 中的
-(void)webView:(WKWebView *)webView runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(BOOL))completionHandler{
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@”提示” message:message?:@”” preferredStyle:UIAlertControllerStyleAlert];
[alertController addAction:([UIAlertAction actionWithTitle:@”取消” style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
completionHandler(NO);
}])];
[alertController addAction:([UIAlertAction actionWithTitle:@”確認” style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
completionHandler(YES);
}])];
[self presentViewController:alertController animated:YES completion:nil];
}
// prompt
//作為js中prompt介面的實現,預設需要有一個輸入框一個按鈕,點選確認按鈕回傳輸入值
//當然可以新增多個按鈕以及多個輸入框,不過completionHandler只有一個引數,如果有多個輸入框,需要將多個輸入框中的值透過某種方式拼接成一個字串回傳,js接收到之後再做處理
//引數 prompt 為 prompt(, );中的
//引數defaultText 為 prompt(, );中的
-(void)webView:(WKWebView *)webView runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(NSString *)defaultText initiatedByFrame:(WKFrameInfo *)frame completionHandler:(void (^)(NSString * _Nullable))completionHandler{
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:prompt message:@”” preferredStyle:UIAlertControllerStyleAlert];
[alertController addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
textField.text = defaultText;
}];
[alertController addAction:([UIAlertAction actionWithTitle:@”完成” style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
completionHandler(alertController.textFields[0].text?:@””);
}])];
[self presentViewController:alertController animated:YES completion:nil];
}
demo地址:https://github.com/zxhkit/WKWebViewAndJS
還有一些其他的跳轉代理,我將新開文章來解釋。
其他拓展:Webview點選圖片檢視大圖
大家都知道,WKWebview裡面並沒有檢視網頁大圖的屬性或者方法的,所以只能透過js與之互動來實現這一功能.基本原理是:透過JS獲取頁面所有的圖片,把這些圖片村到陣列中,給圖片新增點選事件,透過下標顯示大圖即可。
首先建立WKWebView:
NSString *url = @"http://tapi.mukr.com/mapi/wphtml/index.php?ctl=app&act;=news_detail&id;=VGpTSDhkemFVb3Y4Y3JXTFdRR2J4UT09";
WKWebView *webView = [[WKWebView alloc]initWithFrame:CGRectMake(0, kNavBarH, kScreenW, kScreenH-kNavBarH)];
webView.navigationDelegate = self;
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]];
[self.view addSubview:webView];
self.webView = webView;
載入完成後,透過註入JS方法,獲取所有圖片資料
- (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation {
[webView xh_getImageUrlWithWebView:webView];
}
註入的JS程式碼,是自己寫在移動端的,可以根據需要自己修改,當前前提是你要回前端的程式碼。
- (NSArray *)xh_getImageUrlWithWebView:(WKWebView *)webView{
//js方法遍歷圖片新增點選事件傳回圖片個數
static NSString * const jsGetImages =
@"function getImages(){\
var objs = document.getElementsByTagName(\"img\");\
var imgUrlStr='';\
for(var i=0;i if(i==0){\
if(objs[i].alt==''){\
imgUrlStr=objs[i].src;\
}\
}else{\
if(objs[i].alt==''){\
imgUrlStr+='#'+objs[i].src;\
}\
}\
objs[i].onclick=function(){\
if(this.alt==''){\
document.location=\"myweb:imageClick:\"+this.src;\
}\
};\
};\
return imgUrlStr;\
};";
//用js獲取全部圖片
[webView evaluateJavaScript:jsGetImages completionHandler:nil];
NSString *js2 = @"getImages()";
__block NSArray *array = [NSArray array];
[webView evaluateJavaScript:js2 completionHandler:^(id Result, NSError * error) {
NSString *resurlt = [NSString stringWithFormat:@"%@",Result];
if([resurlt hasPrefix:@"#"]){
resurlt = [resurlt substringFromIndex:1];
}
array = [resurlt componentsSeparatedByString:@"#"];
[webView setMethod:array];
}];
return array;
}
在點選圖片的時候。把傳回的字串分隔為陣列,陣列中每個資料都是一張圖片地址。
再透過迴圈方法找到點選的是第幾張圖片。
- (void)webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigationAction *)navigationAction decisionHandler:(void (^)(WKNavigationActionPolicy))decisionHandler {
[self showBigImage:navigationAction.request];
decisionHandler(WKNavigationActionPolicyAllow);
}
- (void)showBigImage:(NSURLRequest *)request {
NSString *str = request.URL.absoluteString;
if ([str hasPrefix:@"myweb:imageClick:"]) {
NSString *imageUrl = [str substringFromIndex:@"myweb:imageClick:".length];
NSArray *imgUrlArr = [self.webView getImgUrlArray];
NSInteger index = 0;
for (NSInteger i = 0; i if([imageUrl isEqualToString:imgUrlArr[i]]){
index = i;
break;
}
}
NSLog(@"im");
}
}
拿到點選的圖片。也就是當前圖片。也拿到所有的圖片陣列,就可以進行圖片預覽了。
UIWebView的點選圖片方法和WKWebView方法類似,只不過是,註入的JS的程式碼,略微不同,傳回的陣列中最後一個資料就是當前圖片。
demo地址:https://github.com/zxhkit/WKWebViewAndJS
●編號376,輸入編號直達本文