iOS Developer我爱编程

iOS wkwebview与js原生交互

2017-07-18  本文已影响172人  旅途开发者

wkwebview与js的交互,如果是oc端直接发送信息给js端,那么和js端只需要约定好一个方法就可以了,oc端通过这个方法名向js端传递信息。如果信息的传递是有js端发起的,那么最少js端要有两个预定好的方法,第一个方法是js端开始向oc端发起信息需求的方法名,当oc端收到该方法名端时候,就去调用js端的方法,把信息传递过去。

代码:

创建wkwebview:

WKWebViewConfiguration * configuration = [[WKWebViewConfiguration alloc]init];

configuration.userContentController = [WKUserContentController new];

WKUserContentController * userContent = configuration.userContentController;

//注册js要调用的方法名,这里的方法名必须要和js端端方法名保持一致,否则oc端是收不到js端调用方法等信息

[userContent addScriptMessageHandler:self name:@"JS_OCAction"];

[userContent addScriptMessageHandler:self name:@"JS_OCActionAndMessage"];

_wkWebView = [[WKWebView alloc]initWithFrame:CGRectMake(0, 20, self.view.frame.size.width, self.view.frame.size.height) configuration:configuration];

_wkWebView.UIDelegate = self;

_wkWebView.navigationDelegate = self;

//显示本地html文件,这个可以直接替换为要显示的网页的网址

NSString * filePath = [[NSBundle mainBundle]pathForResource:@"OC_THML" ofType:@"html"];

NSURL * baseUrl = [[NSBundle mainBundle]bundleURL];

[_wkWebView loadHTMLString:[NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil] baseURL:baseUrl];

[self.view addSubview:_wkWebView];

-(void)userContentController:(WKUserContentController *)userContentController didReceiveScriptMessage:(WKScriptMessage *)message 该方法里面接收js端发送端信息,处理方式为

有关js端 的代码:

这里只是展示出来了js端方法的方法代码,详细的oc以及js代码可以看demo

demo地址为:wkwebview与js交互

上一篇下一篇

猜你喜欢

热点阅读