我们都使用 UIScrollView 是很常见的,我已经在 xib 上使用了一个,并且已经很好地设置了它的所有属性,它在开始时滚动,但后来我在其中放了一个视图,它停止滚动,
[scroll setContentSize:CGSizeMake(containerViewOfRecurrence.frame.size.width, 1000)];
scroll.pagingEnabled = NO;
scroll.delegate = self;
scroll.scrollEnabled = YES;
scroll.clipsToBounds = YES;
[scroll setBackgroundColor:[UIColor clearColor]];
我添加了委托方法来检测滚动,
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
NSLog(@"%f", scrollView.contentOffset.y);
}
并且滚动时不会调用它。
这是xib的图片