为什么 iOS5 中 UIWebview 缩放功能不起作用?
我已经在 webview 中实现了滚动视图的委托。从iOS 5开始,默认的scrollview不再响应didZoom事件。为什么会出现这种行为呢?
I have implemented delegate for scrollview in webview. Since , iOS 5 the default scrollview is no longer responding to didZoom event. Why is this behavior ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iOS中的UIWebView对象有一个scrollview对象,它从iOS5开始通过webView.scrollView属性公开。以前,webView 是滚动视图的委托。因为,iOS5 webView是某些方法的委托,而scrollview是其他方法的委托。
当然,这只是一个 hack,并不是完美的解决方案。
The UIWebView object in iOS has a scrollview object which was exposed from iOS5 onwards with webView.scrollView property. Previously, webView was the delegate of the scrollview. Since, iOS5 webView is delegate for some methods and scrollview is delegate for other methods.
Of course this is just a hack and not perfect solution.