使用CollectionView 的流水布局来实现以下效果
首先我们需要初始化collectionView,步骤与 "iOS-CollectionView 基础" 类似.
这一个样式选择的布局方式同样是 流水布局 ,创建一个类,让它继承于UICollectionViewFlowLayout.
需要要完成的效果:
1.cell的放大和缩小
2.停止滚动时:cell居中
在这里面
1.需要了解 UICollectionViewLayoutAttributes 这个类的对象:
1)一个cell 对应一个UICollectionViewLayoutAttributes 对象
**2)UICollectionViewLayoutAttributes 对象决定了cell的frame **
也就是说,一个LayoutAttribute就对应一个cell,修改LayoutAttribute就代表修改cell 的排布
2.需要重写四个方法,分别是
1)重写prepareLayout方法
2)重写layoutAttributesForElementsInRect:方法
3)重写shouldInvalidateLayoutForBoundsChange:方法
4)重写targetContentOffsetForProposedContentOffset:withScrollingVelocity:方法
1.重写prepareLayout方法
/**
* 用来做布局的初始化
* 注意: 一定要调用 [super prepareLayout]
*/
- (void)prepareLayout{
[super prepareLayout];
//设置内边距
CGFloat inset = (self.collectionView.frame.size.width - self.itemSize.width)*0.5;
self.sectionInset = UIEdgeInsetsMake(0, inset, 0, inset);
//设置滚动方向
self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
}
2.重写layoutAttributesForElementsInRect:方法
/**
*这个方法返回值是一个数组(数组内存放着rect范围内所有元素的布局属性,即*UICollectionViewLayoutAttributes对象)
* 这个方法的返回值,决定了所有rect范围内所有元素的排布
*/
- (nullable NSArray<__kindof UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect{
//获得super已经计算好的属性
NSArray *orignal = [super layoutAttributesForElementsInRect:rect];
NSArray *array = [[NSArray alloc] initWithArray:orignal copyItems:YES];
//计算collectionView中心点位置
CGFloat centerX = self.collectionView.contentOffset.x + self.collectionView.frame.size.width/2;
for (UICollectionViewLayoutAttributes *attri in array) {
//cell中心点 和 collectionView最中心点x 的间距
CGFloat space = ABS(attri.center.x - centerX) ;
//根据距离算缩放比例
CGFloat scale = 1- space/(self.collectionView.frame.size.width/2);
//进行缩放
attri.transform = CGAffineTransformMakeScale(scale, scale);
}
return array;
}
3.重写shouldInvalidateLayoutForBoundsChange:方法
/**
* 当collectionView的显示范围发生改变的时候,是否需要刷新重新布局
*一但重新刷新布局,就会调用
*1.prepareLayout
*2.layoutAttributesForElementsInRect:(CGRect)rect 方法
*/
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds
{
return YES;
}
4.重写targetContentOffsetForProposedContentOffset:withScrollingVelocity:方法
/**
* 这个方法的返回值,决定了contentView停止滚动时的偏移量
* 参数:
* proposedContentOffset 原本情况下,collctionView停止滚动时最终的偏移量
* velocity:滚动速率,通过这个参数可以了解滚动的方向
*/
- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity
{
//计算出最终显示的矩形框
CGRect rect ;
rect.origin.x = proposedContentOffset.x;
rect.origin.y = 0;
rect.size = self.collectionView.frame.size;
//获得super已经计算好的属性
NSArray *array = [super layoutAttributesForElementsInRect:rect];
//计算CollectionView 最中心点x 的值
CGFloat centerX = proposedContentOffset.x + self.collectionView.frame.size.width/2;
//存放最小的间距
CGFloat minSpace = MAXFLOAT;
for (UICollectionViewLayoutAttributes *attr in array) {
if (ABS(minSpace) > ABS(attr.center.x - centerX)) {
minSpace = attr.center.x - centerX;
}
}
//修改原有的偏移量
proposedContentOffset.x += minSpace;
return proposedContentOffset;
}
该布局到此写好了.
接着,自定义一个cell,继承于UICollectionViewCell,带xib,如下图
最后,再回到viewController里修改相应代码就OK了!!