iOSCollectioView滚动到指定section的方法

CollectioView滚动到指定section的方法

 

项目中的需求:collectionView顶部有一个scrollView组成的标签,点击标签,让collectionView滚动到指定的行,滚动collectionView自动切换到顶部指定的标签

实现方法如下:

1. 保证collectionView全部加载完毕,我这里通过一个bool的标志位来标示
  -(void)collectionView:(UICollectionView *)collectionView willDisplayCell:(UICollectionViewCell *)cell forItemAtIndexPath:(NSIndexPath *)indexPath
  {
        if([indexPath row] == ((NSIndexPath*)[[collectionView indexPathsForVisibleItems] lastObject]).row){ self.isLoaded = YES; } }
2. 标签点击了CollectionView滚动到指定行
        if (self.isLoaded) {
            
            // scroll to selected index
            NSIndexPath* cellIndexPath = [NSIndexPath indexPathForItem:0 inSection:index+1]; UICollectionViewLayoutAttributes* attr = [self.collectionView.collectionViewLayout layoutAttributesForSupplementaryViewOfKind:UICollectionElementKindSectionHeader atIndexPath:cellIndexPath]; UIEdgeInsets insets = self.collectionView.scrollIndicatorInsets; CGRect rect = attr.frame; rect.size = self.collectionView.frame.size; rect.size.height -= insets.top + insets.bottom; CGFloat offset = (rect.origin.y + rect.size.height) - self.collectionView.contentSize.height; if ( offset > 0.0 ) rect = CGRectOffset(rect, 0, -offset); [weakSelf.collectionView scrollRectToVisible:rect animated:YES]; } 
3. CollectionView滚动到指定行的时候,同时切换标签滚动
    -(void)scrollViewDidScroll:(UIScrollView *)scrollView{
        static NSInteger currentIndex = 0; NSInteger index=scrollView.contentOffset.y; CGRect visibleRect = (CGRect){.origin = self.collectionView.contentOffset, .size = self.collectionView.bounds.size}; CGPoint visiblePoint = CGPointMake(CGRectGetMidX(visibleRect), CGRectGetMidY(visibleRect)); NSIndexPath *visibleIndexPath = [self.collectionView indexPathForItemAtPoint:visiblePoint]; // NSLog(@"%@",visibleIndexPath); if (currentIndex == visibleIndexPath.section || visibleIndexPath == nil) { return; } currentIndex = visibleIndexPath.section; [self.itemTool itemScrollToPositionWithIndex:currentIndex isJump:YES]; }

转载于:https://www.cnblogs.com/sunfuyou/p/7460825.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值