gpt4 book ai didi

ios - 禁用拖动超过 UIWebView/UIScrollView 的顶部( "Pull to refresh"手势)

转载 作者:可可西里 更新时间:2023-11-01 05:02:02 27 4
gpt4 key购买 nike

我有一个 UIWebView,我希望用户能够向下滚动,然后再次向上滚动,但不能将页面从顶部拉回(通常与拉动刷新)。我不希望用户在它背后什么都没有的时候拉它,当他们这样做时什么也不会发生。叫我霸道 ;)

我能否在向上移动并已位于内容顶部时禁用滚动,而不影响向下滚动,或者如果不在顶部则返回?

最佳答案

你应该使用:

webView.scrollView.bounces = NO;

UIWebView 符合 UIScrollViewDelegate。您可以像这样实现委托(delegate)方法:

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
//The webview is is scrolling
int yPosition = [[_webview stringByEvaluatingJavaScriptFromString: @"scrollY"] intValue];

if([[_webview stringByEvaluatingJavaScriptFromString: @"document.body.offsetHeight"] intValue] - yPosition == _webview.frame.size.height)
{
//The user scrolled to the bottom of the webview
_webview.scrollView.bounces = YES;
}else if([[_webview stringByEvaluatingJavaScriptFromString: @"document.body.offsetHeight"] intValue] - yPosition > _webview.frame.size.height + 100){
_webview.scrollView.bounces = NO;
}

}

我在 Google 云端硬盘上上传了一个 XCode 项目示例: Sample Code

关于ios - 禁用拖动超过 UIWebView/UIScrollView 的顶部( "Pull to refresh"手势),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14478120/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com