我不确定我是否走在正确的道路上,但我注入了一些javascript以在 UIWebView 中发生webView:shouldStartLoadWithRequest:navigationType
任何情况时通知我。touch event
我能够从 touches 事件中恢复目标对象,但我不确定从哪里开始。
我注入的内容:
[webView stringByEvaluatingJavaScriptFromString:
@"function MyFunction(e){document.location='http://null/'+e.touches[0].target;}
window.ontouchstart=function(e){MyFunction(e)}"
];