UICollectionView 在启用分页的情况下不会滚动完整的 320 点
Posted
技术标签:
【中文标题】UICollectionView 在启用分页的情况下不会滚动完整的 320 点【英文标题】:UICollectionView doesn't scroll full 320 points with paging enabled 【发布时间】:2014-12-13 00:45:19 【问题描述】:好吧,假设我有 20 个单元格的 UICollection 在启用分页的情况下水平滚动并且可以在每页上容纳 9 个单元格,当我将其设为 10 个单元格而不是创建第二页时,它的移动刚好足以容纳第 10 个单元格这页纸。我希望它在滚动时在自己的页面上显示第 10 个单元格。
我也尝试过更改 collectionview.contentsize,但由于某种原因,无论我做什么,它都保持不变。
这是我的代码 -
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
return CGSizeMake(82, 119);
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
return UIEdgeInsetsMake(20, 10, 50, 10);
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
customCell *cell= (customCell*)[collectionView dequeueReusableCellWithReuseIdentifier:@"cellIdentifier" forIndexPath:indexPath];
return (UICollectionViewCell*)cell;
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
return 1;
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
return 20;
- (void)viewDidLoad
UICollectionViewFlowLayout *layout=[[UICollectionViewFlowLayout alloc] init];
_collectionView=[[UICollectionView alloc] initWithFrame:self.view.frame collectionViewLayout:layout];
[_collectionView setDataSource:self];
[_collectionView setDelegate:self];
[_collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cellIdentifier"];
[_collectionView setBackgroundColor:[UIColor lightGrayColor]];
[layout setScrollDirection:UICollectionViewScrollDirectionHorizontal];
_collectionView.pagingEnabled = YES;
layout.minimumInteritemSpacing = 15;
layout.minimumLineSpacing = 25;
[_collectionView setContentInset:UIEdgeInsetsMake(65, 0, 0, 0)];
_collectionView.allowsMultipleSelection = YES;
[self.view addSubview:_collectionView];
[super viewDidLoad];
// Do any additional setup after loading the view.
【问题讨论】:
这是默认流布局的工作方式。您可以增加单元格的大小、增加单元格之间的最小间距和/或增加 sectionInset。 【参考方案1】:不幸的是,您不能强制集合视图完全滚动到这样的新页面。
相反,只需计算填写页面所需的单元格数量并将空单元格添加到数据集的末尾即可。
例如,如果您的 NSArray 数据中有 19 项,则再添加 8 项以使总数达到 27。
在您的 collectionView:numberOfItemsInSection:
代表中,执行以下操作:
return (dataArray.count % 9 == 0) ? dataArray.count : ((dataArray.count/9|0)+1)*9;
// 17 returns 18
// 19 returns 27
只需确保在 cellForItemAtIndexPath
中执行应急操作以显示空白单元格(因为您的数据集实际上不包含该项目的数据)。
【讨论】:
我试过了,问题是当我滚动这些空白单元格时,这些空白单元格会被重复使用,因此整个地方都会出现空格 确保在 willDisplayItemAtIndexPath 中也正确处理单元格。 它甚至在创建单元格之前就将其删除并使我的应用程序崩溃 如果您没有为数据生成正确数量的单元格,就会发生这种情况。所以在生成空白之前需要检查该行数据是否存在。 你之前测试过这个吗?因为我不能让它工作以上是关于UICollectionView 在启用分页的情况下不会滚动完整的 320 点的主要内容,如果未能解决你的问题,请参考以下文章
在启用本机分页的情况下查看 UICollectionView 中的上一个/下一个单元格?