UIWebView:如何判断 HTML 的一部分何时可见?

发布于 2024-12-11 10:17:58 字数 61 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゃ人海孤独症 2024-12-18 10:17:58

您可以使用 ios 5.0 中提供的此属性:

@property(nonatomic, readonly, retain) UIScrollView *scrollView

或者在 iOS 5.0 之前:

NSArray *subViews = [NSArray arrayWithArray:[myWebview subviews]];
UIScrollView *webScroller = (UIScrollView *)[subViews objectAtIndex:0];

您可以实现 UIScrollViewProtocol 并执行如下操作:

UIScrollView *webScrollView = myWebView.scrollView;
webScrollView.delegate = self;

//implement method from delegate..

- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    //Scrolled
}

要获取 contentOffset,您所要做的就是:

CGPoint offSet = webScrollView.contentOffset;

You can using this property available in ios 5.0:

@property(nonatomic, readonly, retain) UIScrollView *scrollView

Or prior to iOS 5.0:

NSArray *subViews = [NSArray arrayWithArray:[myWebview subviews]];
UIScrollView *webScroller = (UIScrollView *)[subViews objectAtIndex:0];

You can then implement the UIScrollViewProtocol and do something like this:

UIScrollView *webScrollView = myWebView.scrollView;
webScrollView.delegate = self;

//implement method from delegate..

- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    //Scrolled
}

To get the contentOffset all you have to do is:

CGPoint offSet = webScrollView.contentOffset;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文