我在 tableview 中添加 UIWebview 以显示文本和链接,但无法滚动 tableview,在 webview 中禁用用户交互的任何方式都只能单击事件启用。
Webview 具有未从 Web 加载的静态内容
NSString * htmlString = [NSString stringWithFormat:@"<html><head><script> document.ontouchmove = function(event) { if (document.body.scrollHeight == document.body.clientHeight) event.preventDefault(); } </script><style type='text/css'>* { margin:0; padding:0;} p { color:white; font-family:HelveticaNeue-CondensedBold; font-size:24px;} a { color:#63B604; text-decoration:underline; }</style></head><body><p>%@</p></body></html>", @"search in http://google.com"];
谢谢