gpt4 book ai didi

iphone - UIScrollView 自定义分页大小

转载 作者:IT老高 更新时间:2023-10-28 11:42:36 27 4
gpt4 key购买 nike

UIScrollView 中的分页是一个很棒的功能,我在这里需要将分页设置为更小的距离,例如我希望我的 UIScrollView 的页面大小小于 UIScrollView 框架宽度。谢谢

最佳答案

您可以使用 UIScrollView 委托(delegate)方法。将您的类设置为 ScrollView 的委托(delegate),然后实现以下内容:

- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset
{
CGFloat kMaxIndex = 23;
CGFloat targetX = scrollView.contentOffset.x + velocity.x * 60.0;
CGFloat targetIndex = 0.0;
if (velocity.x > 0) {
targetIndex = ceil(targetX / (kCellWidth + kCellSpacing));
} else if (velocity.x == 0) {
targetIndex = round(targetX / (kCellWidth + kCellSpacing));
} else if (velocity.x < 0) {
targetIndex = floor(targetX / (kCellWidth + kCellSpacing));
}
if (targetIndex < 0)
targetIndex = 0;
if (targetIndex > kMaxIndex)
targetIndex = kMaxIndex;
targetContentOffset->x = targetIndex * (kCellWidth + kCellSpacing);
//scrollView.decelerationRate = UIScrollViewDecelerationRateFast;//uncomment this for faster paging
}

速度参数是必要的,以确保滚动感觉自然,并且在手指仍在移动时触摸结束时不会突然结束。单元格宽度和单元格间距是 View 中页面之间的页面宽度和间距。在这种情况下,我使用的是 UICollectionView

关于iphone - UIScrollView 自定义分页大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6813270/

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