我正在尝试根据滑块的值更改UICollectionViewCell
大小。现在,每次我的滑块更改其值时,我都会通过reloadData
调用UICollectionView
来管理此操作。问题是,对于大数据源,刷新不顺畅,有时会释放应用程序一段时间。有没有办法加强这个?我指定我的单元格中有图像。这是我写的代码:
- (IBAction)didChangeCellSize:(UISlider *)sender
{
[self.collectionView reloadData];
}
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
float size = 120.0 * (self.cellSizeSlider.value + 1);
return CGSizeMake(size, size);
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
ProductCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"productCollectionViewCell" forIndexPath:indexPath];
if ((self.filteredProducts == nil && self.products.count > 0 && indexPath.row < self.products.count) || (self.filteredProducts && self.filteredProducts.count > 0 && indexPath.row < self.filteredProducts.count))
{
NSDictionary *product;
NSData *imageData;
if (self.filteredProducts)
{
product = [self.filteredProducts objectAtIndex:indexPath.row];
}
else
{
product = [self.products objectAtIndex:indexPath.row];
}
imageData = product[ParseDataManagerItemImageData];
if (imageData)
{
UIImage *image = [UIImage imageWithData:imageData];
if (image)
{
cell.productImageView.image = image;
}
else
{
cell.productImageView.image = [UIImage imageNamed:@"DefaultCartItem"];
}
}
else
{
cell.productImageView.image = [UIImage imageNamed:@"DefaultCartItem"];
}
if (self.editMode)
{
cell.deleteButton.hidden = NO;
}
else
{
cell.deleteButton.hidden = YES;
}
cell.productNameLabel.text = [product[DataManagerItemTitle] isKindOfClass:[NSString class]] ? product[DataManagerItemTitle] : @"";
cell.indexPath = indexPath;
cell.productsVC = self;
}
return cell;
}
答案 0 :(得分:1)
正如问题评论中所确认的那样,加载图片是导致问题的原因。
首先分配图像数组,如果products.count
相对小,则可以解决问题。或者你需要某种“智能”缓存服务在后台运行,以提供屏幕上所需的正确图像,因为我看到你也在使用过滤器。
在两种情况下将图像加载到单独的线程中应该会有所帮助,这样您就可以确定是从数据加载额外的文件还是从现有的缓存版本加载,可能是数组或其他类型,如果您的单元格可以,则丢弃未使用的图像稍后修改。
答案 1 :(得分:0)
我认为您不需要重新加载所有细胞。仅重新加载屏幕上可见或当前活动的单元格。如果它的工作尝试这个。
NSArray *visibleCellIndexPaths = [collectionView indexPathsForVisibleItems];
[collectionView reloadItemsAtIndexPaths:visibleCellIndexPaths]