UITableView仅反弹底部边缘 [英] UITableView bounce bottom edge only

查看:128
本文介绍了UITableView仅反弹底部边缘的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有可能在底部反弹 UITableView ,但不是顶部?如果是这样,请告诉我代码。

Is it possible to bounce a UITableView on the bottom side, but not the top? If so, please show me code.

推荐答案

我没有改变跳出属性,而是将其添加到 UIScrollViewDelgate 方法:

Instead of changing the bounces property, I added that to the UIScrollViewDelgate method:

-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    if (scrollView.contentOffset.y<=0) {
        scrollView.contentOffset = CGPointZero;
    }
}

这篇关于UITableView仅反弹底部边缘的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆