私が良い道を進んでいるかどうかはわかりませんが、UIWebViewで発生するたびに通知するためにJavaScriptを注入しました。タッチ イベントからターゲット オブジェクトを回復できますが、そこからどこに進むべきかわかりません。webView:shouldStartLoadWithRequest:navigationType
touch event
私が注入するもの:
[webView stringByEvaluatingJavaScriptFromString:
@"function MyFunction(e){document.location='http://null/'+e.touches[0].target;}
window.ontouchstart=function(e){MyFunction(e)}"
];