UICollectionView 是 iOS6 推出的 API, 可以实现复杂的定制效果, 使用和 UITableView 类似, 这篇主要通过自定义 UICollectionViewFlowLayout 实现一个左右滑动, 支持放大的相册效果
效果展示
思路
- 可以滚动, 必定继承自 UIScrollView
- 数据量未知, 为了避免内存过大导致 crash, 因此需要使用具有循环利用机制的控件, 否则还需要自写一套循环利机制
- UITableView 也可实现, 但是比较奇葩 (需要将整个 tableView 90 °, cell 内容旋转 90 °)
- 自定义 UICollectionViewLayout 完全可以满足需求, 并实现一套完全可以复用的布局方案
- 可继承自 UICollectionView 提供 的 UICollectionViewFlowLayout, 并在此基础上做改动
API 简介
UICollectionViewLayout 提供了以下 API 控制自定义布局的样式, 实现定制效果
01 - layoutAttributesForElementsInRect:
- (nullable NSArray<__kindof UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect; // return an array layout attributes instances for all the views in the given rect
- 这个方法的返回值是一个数组(数组里面存放着rect范围内所有元素的布局属性)
- 这个方法的返回值决定了rect范围内所有元素的排布(frame)
- 返回数组内存放的是 UICollectionViewLayoutAttributes 对象, 一个 cell 对应一个 UICollectionViewLayoutAttributes 对象, 该对象决定了 cell 的 frame
02 - prepareLayout
- (void)prepareLayout;
- 用来做布局的初始化操作
- 不建议在 init 方法中进行布局的初始化操作
- 一定要调用[super prepareLayout], 官方文档中有明确注释, Subclasses should always call super if they override.
03 - shouldInvalidateLayoutForBoundsChange:
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds; // return YES to cause the collection view to requery the layout for geometry information
如果返回YES,那么collectionView显示的范围发生改变时,就会重新刷新布局
一旦重新刷新布局,就会按顺序调用下面的方法:
- prepareLayout
- layoutAttributesForElementsInRect:
04 - targetContentOffsetForProposedContentOffset:
- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity; // return a point at which to rest after scrolling - for layouts that want snap-to-point scrolling behavior
这个方法的返回值,就决定了collectionView停止滚动时的偏移量
参数:
- proposedContentOffset:collectionView停止滚动时最终的偏移
- velocity:滚动速率,通过这个参数可以了解滚动的方向
具体实现
01 - 重写 layoutAttributesForElementsInRect: 方法]
- 调用 [super layoutAttributesForElementsInRect], 拿到父类算好的 cell 布局属性(位置和尺寸)数组
- 遍历布局属性数组, 修改每个 cell 布局属性的缩放比例 scale (原则应该是在一定范围内, cell 距离 collectionView 的 contentView 中心线越近, cell 显示比例越大)
- 在父类算好的基础上进行修改 (transform), 修改完后, 返回这个数组即可
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
{
// 获得super已经计算好的布局属性
NSArray *array = [super layoutAttributesForElementsInRect:rect];
// 计算collectionView最中心点的x值
CGFloat centerX = self.collectionView.contentOffset.x + self.collectionView.frame.size.width * 0.5;
// 在原有布局属性的基础上,进行微调
for (UICollectionViewLayoutAttributes *attrs in array) {
// cell的中心点x 和 collectionView最中心点的x值 的间距
CGFloat delta = ABS(attrs.center.x - centerX);
// 根据间距值 计算 cell的缩放比例
CGFloat scale = 1 - delta / self.collectionView.frame.size.width;
// 设置缩放比例
attrs.transform = CGAffineTransformMakeScale(scale, scale);
}
return array;
}
02 - 重写 shouldInvalidateLayoutForBoundsChange 方法, 返回 YES
意味着当collectionView显示的范围发生改变时,就会重新刷新布局, 一旦刷新布局, 就会按顺序调用:
- (void)prepareLayout;
- (nullable NSArray<__kindof UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect; // return an array layout attributes instances for all the views in the given rect
03 - 重写 targetContentOffsetForProposedContentOffset: 方法决定 collectionView 停止滚动时的偏移量
- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity
{
// 计算出最终显示的矩形框
CGRect rect;
rect.origin.y = 0;
rect.origin.x = proposedContentOffset.x;
rect.size = self.collectionView.frame.size;
// 获得super已经计算好的布局属性
NSArray *array = [super layoutAttributesForElementsInRect:rect];
// 计算collectionView最中心点的x值
CGFloat centerX = proposedContentOffset.x + self.collectionView.frame.size.width * 0.5;
// 存放最小的间距值
CGFloat minDelta = MAXFLOAT;
for (UICollectionViewLayoutAttributes *attrs in array) {
if (ABS(minDelta) > ABS(attrs.center.x - centerX)) {
minDelta = attrs.center.x - centerX;
}
}
// 修改原有的偏移量
proposedContentOffset.x += minDelta;
return proposedContentOffset;
}
```
#### 04 - (补充) 关于 scale - 缩放比例
计算出 cell 的中心线和 collectionView 的 contentView 的中心线的绝对距离 delta
- 计算collectionView最中心点的x值
```
CGFloat centerX = self.collectionView.contentOffset.x + self.collectionView.frame.size.width * 0.5;
```
- 计算cell的中心点 x 和 collectionView 最中心点的 x 值的间距
CGFloat delta = ABS(attrs.center.x - centerX);
```
- 根据 delta, 加一定系数, 算出 scale
CGFloat scale = 1 - delta / self.collectionView.frame.size.width;
UICollectionView 的优点
- 相对与功能简单的 TableView, 能实现复杂的定制效果
- 内部缓存机制, cell 复用
- TableView 类似的 dataSource, delegate 方法, 简单易用的 API
总结
- UICollectionView 提供的自定义 layout 功能可以方便定制很多效果, 比如电商应用常见的瀑布流, tagView 等等
- UITableView 是以行为单位, 功能有限, 而 UICollectionView 可以方便的通过自定 layout 实现各种不同效果
- UICollectionView 也可以通过自定 layout 实现 UITableView
- UICollectionView 内部的循环利用机制可以有效的节约内存, 防止程序 crash
程序代码地址
https://git.oschina.net/aLonelyRoot3/AYCustomLayout.git
UICollectionView 实现的很多其他流行效果会在以后贴出
欢迎关注作者, 点个喜欢,如有闲钱,欢迎打赏。