js-->oc 利用webView的重定向原理(即重新在js中指定document.location的值,此为一url),只要在这个url字符串中按自定义的规则指定好所需调用oc中的函数和参数,然后通过OC中的shouldStartLoadWithRequest函数去捕获处理请求。
1
2
3
4
5
|
//APP调用webView加载的JS中的方法interfaceCalledByAPP,此例传入了两个参数 - ( void )sendMessage:(id)sender { [self.webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@ "interfaceCalledByAPP(\"%@\",\"%@\")" , @ "2" ,@ "333" ]]; } |
1
2
3
4
|
//JS向APP传值。首先实现UIWebView的代理,然后根据NSURLRequest的URL进行不同处理 //JS中的将要传递的数据作为URL重定向 var tempurl = "将要传递的值" ; window.location.href= encodeURI(encodeURI(tempurl)); |
1
2
3
4
5
6
7
8
9
10
11
|
//webView的代理相应重定向 - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{ NSString *requestString = [[[request URL] absoluteString] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; NSLog(@ "should-------" ); //根据自己定义的规则,通过字符串的值,调用OC的方法。这里就输出一下字符串了。 NSLog(@ "===%@" ,requestString); } return YES; } |
原文:http://www.cnblogs.com/iOS-mt/p/5628956.html