ios uiwebview 拦截 点击事件

在uiwebview 中点击事件触发ios代码

方法1:

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
}
```
拦截reuqest,判断关键字来完成需求。这种方法太low了而且并不灵活


方法2:WebViewJavascriptBridge 库

https://github.com/yaoquanfeng123/WebViewJavascriptBridgeDemoToApp


你可能感兴趣的:(iOS,js,webview)