iPhone - UIWebView:检测用户滚动到页面底部
所以,我有一个 UIView,里面有一个 UIWebView,提供本地 HTML 文件(文档预览)。我也有“接受”和“ “拒绝”UIButton。我需要这些按钮仅在用户滚动到网页底部后才出现。有没有办法捕获滚动到 UIWebView 底部的事件?
我还没有看到任何好的答案,有人可以帮忙吗?
提前致谢。
So, I have a UIView with a UIWebView inside serving up a local HTML file (a document preview). I also have "Accept" & "Reject" UIButtons. I need these buttons to only appear after the user has scrolled to the bottom of the web page. Is there a way to capture an event for scrolling to the bottom of a UIWebView?
I have not seen any good answers for this, can anyone help?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
UIWebView 符合 UIScrollViewDelegate。因此,您可以创建 UIWebView 的子类(例如 ScrollDetectWebView)并捕获对 UIScrollViewDelegate 的调用。
UIWebView conforms to UIScrollViewDelegate. As such, you can create a subclass of UIWebView (say, ScrollDetectWebView) and capture the calls to the UIScrollViewDelegate.
嗯?
为什么不将按钮放在页面底部呢?
huh?
Why not just included the buttons on the bottom of the page?
JavaScript 可以处理滚动事件并向 Objective-c 发送消息。
JavaScript lets handle the scrolling event and send message to Objective-c.