UICollectionView和UITableView很相似的一个UI控件,可是UICollectionView强大很多! 下面我们来认识一下UICollectionView相关的一下知识:
UICollectionView的数据源:和UITableView类似
// 分组,不实现该方法,则默认为一组
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
return 1;
}
// 每组item的个数
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
return 3;
}
UICollectionView常用的代理方法:
//定义item的属性;注意:这里和UITableView有点区别,UITableView可以从复用池中取出cell,也可以重新创建一个cell;而UICollectionView的item只能从复用池中取出;必须先注册才可以使用,header和footer也是一样;
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
}
// item是否可以移动
- (BOOL)collectionView:(UICollectionView *)collectionView canMoveItemAtIndexPath:(NSIndexPath *)indexPath{
return YES;
}
// 移动item时调用
- (void)collectionView:(UICollectionView *)collectionView moveItemAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
}
// 是否允许选中某个item
- (BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath{
return YES;
}
//选中时触发
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
}
//选中其他的item时 是否允许取消选中状态
- (BOOL)collectionView:(UICollectionView *)collectionView shouldDeselectItemAtIndexPath:(NSIndexPath *)indexPath{
return YES;
}
// 取消选中状态时触发
- (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath{
}
// 点击item时是否允许高亮状态
- (BOOL)collectionView:(UICollectionView *)collectionView shouldHighlightItemAtIndexPath:(NSIndexPath *)indexPath{
return YES;
}
// 高亮状态时调用
- (void)collectionView:(UICollectionView *)collectionView didHighlightItemAtIndexPath:(NSIndexPath *)indexPath{
}
// 高亮状态结束时调用
- (void)collectionView:(UICollectionView *)collectionView didUnhighlightItemAtIndexPath:(NSIndexPath *)indexPath{
}
// 长按时是否显示菜单
- (BOOL)collectionView:(UICollectionView *)collectionView shouldShowMenuForItemAtIndexPath:(NSIndexPath *)indexPath{
return YES;
}
// 是否展示菜单的选项:cut:、copy:、select:、selectAll:、paste:、delete:等选项;其中只有cut:、copy:、paste:在这可以使用;
- (BOOL)collectionView:(UICollectionView *)collectionView canPerformAction:(SEL)action forItemAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender{
return YES;
}
// 选择菜单的某个选项后调用,进行处理
- (void)collectionView:(UICollectionView *)collectionView performAction:(SEL)action forItemAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender{
NSLog(@"%@",NSStringFromSelector(action));
}
// 是否允许移动item
- (BOOL)collectionView:(UICollectionView *)collectionView canMoveItemAtIndexPath:(NSIndexPath *)indexPath{
return YES;
}
// item移动的时候调用:sourceIndexPath移动前,destinationIndexPath移动后
- (void)collectionView:(UICollectionView *)collectionView moveItemAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
[self.shopArr exchangeObjectAtIndex:sourceIndexPath.item withObjectAtIndex:destinationIndexPath.item];
}
// 实现collectionView头部或者是底部的设置;前提是注册了头部或者是底部并且设置了size
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
UICollectionReusableView *view = [ collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"header" forIndexPath:indexPath];
view.backgroundColor = [UIColor redColor];
return view;
}
//注册item
[collectionView registerClass:[YANCollectionCell class] forCellWithReuseIdentifier:ID];
// 注册header
[collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"header"];
// 注册footer
[collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"footer"];
UICollectionViewFlowLayout的基本使用
UICollectionViewFlowLayout是UICollectionViewLayout的子类;官方封装好的,可以直接使用;如果想实现像瀑布流那样的布局,就得自己封装UICollectionViewLayout啦!
基本设置:
minimumLineSpacing // 最小行间距
minimumInteritemSpacing // 最小列间距
scrollDirection //布局样式:UICollectionViewScrollDirectionVertical、UICollectionViewScrollDirectionHorizontal
itemSize //item大小
UICollectionViewDelegateFlowLayout代理方法:
// 设置item的size
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{
return CGSizeMake(80, 90);
}
// 设置分组的collectionView的UIEdgeInsets
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section{
return UIEdgeInsetsMake(20, 10, 40, 50);
}
// 设置最小行间距
- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section{
return 100;
}
//最小列间距
- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section{
return 50;
}
// 设置header的size;实现这个代理的方法的前提是注册了header
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section{
return CGSizeMake(30, 80);
}
// 设置footer的size; 实现这个代理的方法的前提是注册了footer
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section{
return CGSizeMake(50, 100);
}
实现UICollectionView的item移动:
- 给UICollectionView添加一个手势;(具体什么手势根据需求确定,我这里是长按手势)
- 根据手势判断item的位置,并实现代理方法
- (void)collectionView:(UICollectionView *)collectionView moveItemAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath;
修改数据源;
- (void)longGestureRecog:(UILongPressGestureRecognizer *)longGesture{
switch (longGesture.state) {
case UIGestureRecognizerStateBegan:{
NSIndexPath *indexPath = [self.collectionView indexPathForItemAtPoint:[longGesture locationInView:self.collectionView]];
if (indexPath == nil) {
break;
}
[self.collectionView beginInteractiveMovementForItemAtIndexPath:indexPath];
}
break;
case UIGestureRecognizerStateChanged:{
[self.collectionView updateInteractiveMovementTargetPosition:[longGesture locationInView:self.collectionView]];
}
break;
case UIGestureRecognizerStateEnded:{
[self.collectionView endInteractiveMovement];
}
break;
default:{
[self.collectionView cancelInteractiveMovement];
}
break;
}
}
UICollectionViewLayout的基本使用
//类似于- (void)layoutSubviews;实现页面布局;
- (void)prepareLayout{
[super prepareLayout];
}
//设置UICollectionView的 ContentSize,影响cell是否显示完全的问题;
- (CGSize)collectionViewContentSize{
}
//设置item的UICollectionViewLayoutAttributes;即cell的bounds,size,transform,alpha等一些属性的设置;
- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath* )indexPath{
}
//获取可视范围内的cell的UICollectionViewLayoutAttributes属性;
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect{
}
//布局发生改变时,是否重新加载,重新执行- (void)prepareLayout;
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds{
}
//获取UICollectionView的最终偏移量;
- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity{
}