服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS开发教程之WKWebView与JS的交互

iOS开发教程之WKWebView与JS的交互

2021-05-26 15:44iOS_xuanhe IOS

这篇文章主要给大家介绍了关于iOS开发教程之WKWebView与JS的交互的相关资料,文中通过示例代码介绍的非常详细,对各位iOS开发者们具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧

前言

ios8以后,apple公司推出了wkwebview,对比之前的uiwebview不论是处理速度还是内存性能,都有了大幅度的提升!

那么下面我就分享一下wkwebview与js的交互.

首先使用wkwebview.你需要导入webkit #import

然后初始化一个wkwebview,设置代理,并且执行代理的方法.在网页加载成功的时候,我们会调用一些js代码对网页进行设置.

wkwebview的代理一共有三个:wkuidelegate,wknavigationdelegate,wkscriptmessagehandler

1.wkwebview调用js方法

?
1
2
3
4
5
6
7
8
9
10
/**
  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);
}];

网页加载完成

?
1
2
3
4
5
6
7
8
9
10
//网页加载完成
-(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写入内容.

?
1
2
3
4
5
6
7
8
9
10
11
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方法:

?
1
[[webview configuration].usercontentcontroller addscriptmessagehandler:self name:@"show"];

遵循代理wkscriptmessagehandler后,调用js的方法show;

实现wkscriptmessagehandler代理方法,调用js方法后的回调,可以获取到方法名,以及传递的数据:

?
1
2
3
4
5
6
//js传递过来的数据
-(void)usercontentcontroller:(wkusercontentcontroller *)usercontentcontroller didreceivescriptmessage:(wkscriptmessage *)message
{
  nslog(@"%@",message.name);//方法名
  nslog(@"%@",message.body);//传递的数据
}

获取js弹窗信息

遵循wkuidelegate代理,实现相关代理方法:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// 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地址

还有一些其他的跳转代理,我将新开文章来解释.

其他拓展: webview点击图片查看大图

大家都知道,wkwebview里面并没有查看网页大图的属性或者方法的,所以只能通过js与之交互来实现这一功能.基本原理是:通过js获取页面所有的图片,把这些图片村到数组中,给图片添加点击事件,通过下标显示大图即可.

首先创建wkwebview:

?
1
2
3
4
5
6
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方法,获取所有图片数据

?
1
2
3
- (void)webview:(wkwebview *)webview didfinishnavigation:(wknavigation *)navigation {
  [webview xh_getimageurlwithwebview:webview];
}

注入的js代码,是自己写在移动端的,可以根据需要自己修改,当前前提是你要回前端的代码.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
- (nsarray *)xh_getimageurlwithwebview:(wkwebview *)webview{
  //js方法遍历图片添加点击事件返回图片个数
  static nsstring * const jsgetimages =
  @"function getimages(){\
  var objs = document.getelementsbytagname(\"img\");\
  var imgurlstr='';\
  for(var i=0;i<objs.length;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; 
}

在点击图片的时候,把返回的字符串分隔为数组,数组中每个数据都是一张图片地址.

再通过循环方法找到点击的是第几张图片.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- (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 < [imgurlarr count]; i++) {
      if([imageurl isequaltostring:imgurlarr[i]]){
        index = i;
        break;
      }
    }
    nslog(@"im");
  }
}

拿到点击的图片,也就是当前图片,也拿到所有的图片数组,就可以进行图片预览了.

uiwebview的点击图片方法和wkwebview方法类似,只不过是,注入的js的代码,略微不同,返回的数组中最后一个数据就是当前图片.

demo地址

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。

原文链接:http://www.cocoachina.com/articles/27105

延伸 · 阅读

精彩推荐
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01