7

私は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;
}

どんな助けでも大歓迎です。前もって感謝します。

4

1 に答える 1

15

@yuf - 指示をありがとう。NSCache は、私が望んでいた結果を得ているようです。正常に動作しているコードは次のとおりです。誰かが同様の問題を抱えている場合は、以下を私の元の質問と比較できます。

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

    NSString *imageName = [[self.photos objectAtIndex:indexPath.row] objectForKey:@"fullimage"];
    UIImage *image = [imageCache objectForKey:imageName];

    if(image){

        cell.imageView.image = image;
    }

    else{

    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];

        dispatch_async(dispatch_get_main_queue(), ^{

            cell.imageView.image = image;

        });

        [imageCache setObject:image forKey:imageName];
    });
    }

    return cell;
}
于 2012-12-27T03:36:10.497 に答える