是否有可能以某种方式降低 UITableView 顶部或末端的弹跳高度?
谢谢
您可以在 scrollViewDidScroll
方法中检查和设置 contentOffset
属性:
-(void)scrollViewDidScrollUIScrollView *)scrollView
{
if (scrollView.contentOffset.y <= -100)
{
CGPoint offset = scrollView.contentOffset;
offset.y = -100;
scrollView.contentOffset = offset;
}
}
关于iphone - 减少弹跳 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5548815/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) | Powered by Discuz! X3.4 |