是否有可能以某种方式降低 UITableView 顶部或末端的弹跳高度?
谢谢
Best Answer-推荐答案 strong>
您可以在 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/
|