HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – UICollectionView滚动到任何页脚或标题视图大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我想滚动到集合视图的页脚或标题视图,但是,scrollToItemATindexPath的标准方法仅滚动到单元格
- (void)scrollToBottom {
        NSInteger section = [self numberOfSectionsInCollectionView:self.collectionView] - 1;
        NSInteger item = [self collectionView:self.collectionView numberOfItemsInSection:section] - 1;
        if ((section > 0) && (item > 0)) {
            NSIndexPath * lasTindexPath = [NSIndexPath indexPathForItem:item inSection:section];
            [self.collectionView scrollToItemATindexPath:lasTindexPath atScrollPosition:UICollectionViewScrollPositionBottom animated:NO];
        }
}

如何滚动到任何页脚,标题视图,类似于滚动到单元格?

解决方法

我知道这是一个老问题,但我最近遇到了同样的问题.我找到的最好的解决方案是来自Gene De Lisa的 http://www.rockhoppertech.com/blog/scroll-to-uicollectionview-header/,因为你似乎在Obj-C工作,这里是我使用的Swift代码的端口:
-(void) scrollToSectionHeader:(int)section {    
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:section];
    UICollectionViewLayoutAttributes *attribs = [self.collectionView layoutAttributesForSupplementaryElementOfKind:UICollectionElementKindSectionHeader aTindexPath:indexPath];
    CGPoint topOfHeader = CGPointMake(0,attribs.frame.origin.y - self.collectionView.contenTinset.top);
    [self.collectionView setContentOffset:topOfHeader animated:YES];
}

上面的代码将正确滚动到给定部分的标题(我需要的全部).修改它以滚动到页脚是很简单的:

-(void) scrollToSectionFooter:(int)section {    
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:section];
    UICollectionViewLayoutAttributes *attribs = [self.collectionView layoutAttributesForSupplementaryElementOfKind:UICollectionElementKindSectionFooter aTindexPath:indexPath];
    CGPoint topOfFooter = CGPointMake(0,attribs.frame.origin.y - self.collectionView.contenTinset.top);
    [self.collectionView setContentOffset:topOfFooter animated:YES];
}

大佬总结

以上是大佬教程为你收集整理的ios – UICollectionView滚动到任何页脚或标题视图全部内容,希望文章能够帮你解决ios – UICollectionView滚动到任何页脚或标题视图所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。