1

我有一个collectionView,其中一个部分显示图像网格。问题是当我进行更新并且结果计数小于初始项目计数时。单元格随机放置在“旧”空点中,但我希望 collectionView 从左上角开始一个接一个地放置它们。

我在进行更新时使用此代码:

// Fetch request above this code
[_collectionView performBatchUpdates:^{
    [_collectionView reloadSections:[NSIndexSet indexSetWithIndex:0]];
} completion:nil];
[_collectionView reloadData];

我没有自定义 flowLayout。我正在使用这个:

UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
layout.minimumInteritemSpacing = 0;
layout.minimumLineSpacing = 0;

我应该删除动画块中的单元格吗?

有没有办法强制 collectionView 完全重新加载?

编辑:

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView   cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    FTRecipeIndexCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellIdentifier forIndexPath:indexPath];

if (!cell) {
    cell = [[FTRecipeIndexCell alloc] init];
}
Recipe *recipe = [fetchedResultsController objectAtIndexPath:indexPath];
cell.imageView.image = [UIImage imageWithData:recipe.thumbnail];
float size = _collectionView.bounds.size.width / 6;
[cell setFrame:CGRectMake(0, 0, size, size)];
   return cell;
}

-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
return [fetchedResultsController.fetchedObjects count];
}

让它工作。我错误地设置了 cellFrame 导致单元格的狂野西部定位。因为我只在单元格上使用 imageView,所以我用这段代码替换了我的自定义单元格。

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellIdentifier forIndexPath:indexPath];
    Recipe *recipe = [fetchedResultsController objectAtIndexPath:indexPath];
    UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageWithData:recipe.thumbnail]];

    float size = _collectionView.bounds.size.width / 6;

   [imageView setFrame:CGRectMake(0, 0, size, size)];
   [cell addSubview:imageView];
 return cell;
}
4

1 回答 1

0

编辑代码:

    if (!cell) {
    cell = [[FTRecipeIndexCell alloc] init];
}

删除此代码块。它不是必需的,它只会导致问题,如果

FTRecipeIndexCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellIdentifier forIndexPath:indexPath];

由于某种原因不会返回单元格。

如果您更改任何部分的内容计数,则 UICollectionView 必须通过 Delegate 方法获取更改:

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section

意思是,如果您没有在此处动态提供每个部分的记录数,那么 UICollectionView 将假定旧计数仍然有效,并将使用您不再需要的旧内容将单元格出列。

如果您正确实现了这一点,那么您应该没有问题,因为您很可能将图像视图作为单元格的子视图,并且您将其连接为属性插座。但是,如果您希望 UICollectionViewCell 正常工作且高效,以编程方式将内容添加到 UICollectionViewCell 确实需要一些额外的技巧。

编辑:

 - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    UICollectionViewCell *cell = [collectionView   dequeueReusableCellWithReuseIdentifier:cellIdentifier forIndexPath:indexPath];
    Recipe *recipe = [fetchedResultsController objectAtIndexPath:indexPath];
    UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageWithData:recipe.thumbnail]];

    float size = _collectionView.bounds.size.width / 6;

   [imageView setFrame:CGRectMake(0, 0, size, size)];
   [cell addSubview:imageView];
 return cell;
}

上面的代码也不够好:

永远不要将内容添加到视图,而是添加到单元格的 contentView 您需要更巧妙地管理内容,当您以编程方式添加单元格时,但最后会更加清晰,因为您不会在代码和 NIB 之间传播逻辑。我建议你这样做:

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellIdentifier forIndexPath:indexPath];
Recipe *recipe = [fetchedResultsController objectAtIndexPath:indexPath];
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageWithData:recipe.thumbnail]];
float size = _collectionView.bounds.size.width / 6;

[imageView setFrame:CGRectMake(0, 0, size, size)];

// remove subviews, otherwise the content will overlap
for (UIView *current in [cell.contentView subviews]) {[current removeFromSuperview];}
// always add to contentView property
[cell.contentView addSubview:imageView];
return cell;

}

于 2013-10-07T09:58:21.403 回答