gpt4 book ai didi

ios - UICollectionViewController 在滚动时重新加载图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:15:52 26 4
gpt4 key购买 nike

我正在使用 ParseFramework 获取一些图像并将它们显示在 collectionViewController 中。问题是,如果我在加载所有图像之前滚动,我会遇到图像重复,所以我会在不同的单元格中找到相同的图像。以下是可能对您有所帮助的代码片段。

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {

ExampleCell *cell = (ExampleCell*)[collectionView dequeueReusableCellWithReuseIdentifier:@"imageCell" forIndexPath:indexPath];

PFObject * imageObject = [self.imageFilesArray objectAtIndex:indexPath.row];

PFFile * imageFile=[imageObject objectForKey:@"image"];

[imageFile getDataInBackgroundWithBlock:^(NSData *data, NSError *error) {
if(!error){
cell.parseImage.image=[UIImage imageWithData:data];
}
}];
return cell;
}

以及执行查询的方法:

-(void) queryParseMethod{

PFQuery *query = [PFQuery queryWithClassName:@"Allimages"];
[query findObjectsInBackgroundWithBlock:^(NSArray * objects, NSError *error) {
if(!error){
self.imageFilesArray = [[NSArray alloc] initWithArray:objects];
[self.collectionView reloadData];
}
}];
}

这是在 ExampleCell.h 中

 @property (weak, nonatomic) IBOutlet UIImageView *parseImage;

这是在 ExampleCell.m 中

 @synthesize parseImage;

在 Storyboard 中,我将单元格的标识符设置为 imageCell

我考虑了下面的答案,所以我修改了我的方法:

 - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
ExampleCell *cell = (ExampleCell*)[collectionView dequeueReusableCellWithReuseIdentifier:@"imageCell" forIndexPath:indexPath];

if(cell==nil) // no queued cell to dequeue
{
cell = (ExampleCell *)[[UICollectionViewCell alloc] initWithFrame:CGRectMake(0,0,50,50)];
}

// clear any previous image if necessary
cell.parseImage.image = nil;

PFObject * imageObject = [self.imageFilesArray objectAtIndex:indexPath.row];
PFFile * imageFile=[imageObject objectForKey:@"image"];

[imageFile getDataInBackgroundWithBlock:^(NSData *data, NSError *error)
{
if(!error)
cell.parseImage.image=[UIImage imageWithData:data];
}];

return cell;

但我仍然有同样的问题。我做错了什么?

最佳答案

我认为您有重复的图像,因为某些单元格被重复使用。

当一个单元格不再可见时,它会被放入一个队列中,在那里它可以被重新用于要显示的新单元格。该单元格仍然保留对其图像的引用。

所以当你出列一个单元格时,你应该从清除它之前的图像开始:

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
ExampleCell *cell = (ExampleCell*)[collectionView dequeueReusableCellWithReuseIdentifier:@"imageCell" forIndexPath:indexPath];

if( !cell ) // no queued cell to dequeue
{
// create a new cell to use
}

// clear any previous image if necessary
cell.parseImage.image = nil;

PFObject * imageObject = [self.imageFilesArray objectAtIndex:indexPath.row];
PFFile * imageFile=[imageObject objectForKey:@"image"];

[imageFile getDataInBackgroundWithBlock:^(NSData *data, NSError *error)
{
if(!error)
cell.parseImage.image=[UIImage imageWithData:data];
}];

return cell;
}

关于ios - UICollectionViewController 在滚动时重新加载图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30016439/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com