我使用ParseFramework來獲取一些圖像並將它們顯示在一個collectionViewController中。事情是,如果在所有圖像加載之前滾動,我會遇到圖像重複,因此我在不同的單元格中找到相同的圖像。以下是可幫助您的代碼片段。UICollectionViewController在滾動上重新加載圖像
- (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;
在故事板我正在設定標識該細胞的細胞至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;
}
但我仍然有同樣的問題。我做錯了什麼?
你是什麼意思創建一個新的單元格。 –
我的意思是:'ExampleCell * cell = [[UICollectionViewCell alloc] initWithFrame:CGRectMake(x,y,w,h)];'。如果collectionView無法退出先前的單元格(因爲沒有任何出列,例如首次顯示集合時),則需要按上述方式創建它。 –
沒有爲我工作,每次我滾動時仍然做同樣的事情。 –