ios - UICollectionViewController 在滚动时重新加载图像
<p><p>我正在使用 ParseFramework 获取一些图像并将它们显示在 collectionViewController 中。问题是,如果我在加载所有图像之前滚动,我会遇到图像重复,所以我会在不同的单元格中找到相同的图像。以下是对您有所帮助的代码片段。</p>
<pre><code>- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
ExampleCell *cell = (ExampleCell*);
PFObject * imageObject = ;
PFFile * imageFile=;
[imageFile getDataInBackgroundWithBlock:^(NSData *data, NSError *error) {
if(!error){
cell.parseImage.image=;
}
}];
return cell;
}
</code></pre>
<p>以及执行查询的方法:</p>
<pre><code>-(void) queryParseMethod{
PFQuery *query = ;
[query findObjectsInBackgroundWithBlock:^(NSArray * objects, NSError *error) {
if(!error){
self.imageFilesArray = [ initWithArray:objects];
;
}
}];
}
</code></pre>
<p>这是在 ExampleCell.h 中</p>
<pre><code> @property (weak, nonatomic) IBOutlet UIImageView *parseImage;
</code></pre>
<p>这是在 ExampleCell.m 中</p>
<pre><code> @synthesize parseImage;
</code></pre>
<p>在 Storyboard 中,我将单元格的标识符设置为 <code>imageCell</code>。 </p>
<p>我考虑了下面的答案,所以我修改了我的方法:</p>
<pre><code> - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
ExampleCell *cell = (ExampleCell*);
if(cell==nil) // no queued cell to dequeue
{
cell = (ExampleCell *)[ initWithFrame:CGRectMake(0,0,50,50)];
}
// clear any previous image if necessary
cell.parseImage.image = nil;
PFObject * imageObject = ;
PFFile * imageFile=;
[imageFile getDataInBackgroundWithBlock:^(NSData *data, NSError *error)
{
if(!error)
cell.parseImage.image=;
}];
return cell;
</code></pre>
<p>}</p>
<p>但我仍然有同样的问题。我做错了什么?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我认为您有重复的图像,因为某些单元格被重复使用。</p>
<p>当一个单元格不再可见时,它会被放入队列中,可以重复使用以显示新的单元格。单元格仍然保留对其图像的引用。</p>
<p>所以当你出列一个单元格时,你应该从清除它之前的图像开始:</p>
<pre><code>- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
ExampleCell *cell = (ExampleCell*);
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 = ;
PFFile * imageFile=;
[imageFile getDataInBackgroundWithBlock:^(NSData *data, NSError *error)
{
if(!error)
cell.parseImage.image=;
}];
return cell;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - UICollectionViewController 在滚动时重新加载图像,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/30016439/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/30016439/
</a>
</p>
页:
[1]