点开UICollectionViewDelegate,发现有@protocol UICollectionViewDelegate <UIScrollViewDelegate>。
所以只要实现UIScrollViewDelegate的
- (void)scrollViewDidScroll:(UIScrollView *)scrollView; 方法,就可以重写UICollectionView滑动操作
例如,在UICollection上方有一个名为testImg的ImageView,要跟着UICollection的滑动一起动,那么可以使用下面方法
1 - (void)scrollViewDidScroll:(UIScrollView *)scrollView 2 { 3 CGPoint point=scrollView.contentOffset; 4 NSLog(@"%f,%f",point.x,point.y); 5 6 CGRect frame = [_testImg frame]; 7 frame.origin.y = 43-point.y; 8 _testImg.frame = frame; 9 10 frame = [scrollView frame]; 11 frame.origin.y = 179-point.y; 12 scrollView.frame = frame; 13 }
需要注意的是,第7行的43和第11行的179分别为testImg和UICollectionView初始的y轴值,不是滑动之前的值。如果使用
控件.origin.y -= point.y;
y值就会快速变小,控件瞬间飞出屏幕
上述代码中,point是滑动之后的偏移量,手指上滑,偏移y为正