UIWebView:如何判断 HTML 的一部分何时可见?
UIWebView 是否提供了滚动发生时调用的回调,如果是,如何获取当前内容偏移量?
谢谢。
Is there a callback offered by UIWebView that is called when scrolling occurs, and if so, how can I get the current content offset?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ios 5.0 中提供的此属性:
或者在 iOS 5.0 之前:
您可以实现 UIScrollViewProtocol 并执行如下操作:
要获取 contentOffset,您所要做的就是:
You can using this property available in ios 5.0:
Or prior to iOS 5.0:
You can then implement the
UIScrollViewProtocol
and do something like this:To get the contentOffset all you have to do is: