我有一个带有分页的 UIScrollView (所以典型的模型带有一个 UIPageControl 并在页面之间左右拖动/轻弹),我已经很好地工作了。奇怪的是,当我想摆脱弹跳(这样你在左右两侧的 UI 后面看不到黑色)时,突然分页不再起作用。
换句话说,当:
scrollView.pagingEnabled = YES;
scrollView.bounces = YES;
一切正常,除了我不喜欢 page(0) 和 page(length-1) 的弹跳。但是当我这样做时:
scrollView.pagingEnabled = YES;
scrollView.bounces = NO;
它停止在每一页上对齐,而是将所有页面一起视为一个长页面。所以似乎由于某种原因分页依赖于弹跳,只要我能以某种方式停止弹跳就可以了。那么,有没有其他方法可以摆脱它呢?还是我做错了什么?
编辑: 解决方案:
@interface PagingScrollView : UIScrollView
@end
@implementation PagingScrollView
- (id)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame])
{
self.pagingEnabled = YES;
self.bounces = YES;
}
return self;
}
- (void)setContentOffset:(CGPoint)offset
{
CGRect frame = [self frame];
CGSize contentSize = [self contentSize];
CGPoint contentOffset = [self contentOffset];
// Clamp the offset.
if (offset.x <= 0)
offset.x = 0;
else if (offset.x > contentSize.width - frame.size.width)
offset.x = contentSize.width - frame.size.width;
if (offset.y <= 0)
offset.y = 0;
else if (offset.y > contentSize.height - frame.size.height)
offset.y = contentSize.height - frame.size.height;
// Update only if necessary
if (offset.x != contentOffset.x || offset.y != contentOffset.y)
{
[super setContentOffset:offset];
}
}
@end