如何阻止UIWebView从“弹跳”垂直滚动到底部?

时间:2016-04-04 16:08:11

标签: ios uiwebview swift2

我的问题与this question相同,但有一点不同。当我滚动到顶部刷新我的网站时,我想停止弹跳到底部滚动的末尾。我该怎么做?

3 个答案:

答案 0 :(得分:7)

您可以尝试这样:

override func viewDidLoad() {
    super.viewDidLoad()

    webview.scrollView.delegate = self

}

func scrollViewDidScroll(scrollView: UIScrollView) {

    if (scrollView.contentOffset.y >= scrollView.contentSize.height - scrollView.frame.size.height) {
        scrollView.setContentOffset(CGPointMake(scrollView.contentOffset.x, scrollView.contentSize.height - scrollView.frame.size.height), animated: false)
    }   
}

设置webview的委托并设置webview的滚动视图的内容偏移

参考文献取自:https://stackoverflow.com/a/14084747/4557505

答案 1 :(得分:5)

我个人在Swift的Xcode 7.3中,我只是在viewDidLoad函数中添加它:

UIWebview.scrollView.bounces = false;

答案 2 :(得分:1)

我认为你也可以设置滚动视图的反弹

像这样,它很简单

-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
    if (scrollView.contentOffset.y > 0) {
        scrollView.bounces = NO;
    }else{
        scrollView.bounces = YES;
    }
}