私はObjective-Cにかなり慣れていないので、これがすべて理にかなっていることを願っています. サーバーから画像をダウンロードし、collectionView cellForItemAtIndexPath:
メソッドの画像ビューに表示しました。私が直面している問題は、画像がキャッシュされていないように見えることです。セルが再利用されるたびに、サーバーから関連する画像が再ダウンロードされているようです。
私のviewDidLoadメソッドでは、NSMutableDictionaryを作成しています:
imageDictionary = [[NSMutableDictionary alloc]initWithCapacity:50.0];
ドキュメントを読み、同様の質問への回答を見て、これに加えて次のコードで十分だと思いました。私はこれを数日間行ってきましたが、何かが欠けているか、把握していない概念があることを知っています.
#pragma mark - UICollectionView Data Source
- (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section;{
NSLog(@"Begin retrieving photos");
return [self.photos count];
}
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
return 1;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath;{
CollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"MY_CELL" forIndexPath:indexPath];
cell.imageView.image = nil;
if (cell.imageView.image == nil) {
dispatch_queue_t downloadQueue = dispatch_queue_create("image downloader", NULL);
dispatch_async(downloadQueue, ^{
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:[[self.photos objectAtIndex:indexPath.row] objectForKey:@"fullimage"]]];
UIImage *image = [UIImage imageWithData:data];
[imageDictionary setObject:image forKey:@"Image"];
dispatch_async(dispatch_get_main_queue(), ^{
cell.imageView.image = [imageDictionary objectForKey:@"Image"];
[cell setNeedsDisplay];
});
});
}
return cell;
}
どんな助けでも大歓迎です。前もって感謝します。