to receive a message from one web view, use a custom URL scheme like "log: yourlogmsg"
js code
window.location = "log:yourlogmsg";
using
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
and return false;
source
share