苹果开发文档中说
You should not embed UIWebView or UITableView objects in UIScrollView objects. If you do so, unexpected behavior can result because touch events for the two objects can be mixed up and wrongly handled.
如果将UIWebView嵌入到UIScrollView,UIScrollView左右可以滑动,UIWebView上下滑动,有什么好的方法可以解决滑动手势混乱的问题(表现为有时候滑动灵敏度不好或识别不佳)
像weibo就是混合用的,我这就说个我个人的思路,仅供参考:
webview不要占满scrollview的空间,scrollview的frame尽可能大点。再设置webview scalesPageToFit为yes,这样应该会好一些,有更好的方案我也学习下。