从解析中下载图像并在UICollection视图中显示

时间:2016-06-15 08:22:34

标签: ios objective-c parse-platform uicollectionview

我正在从解析下载图像,之后我在uicollection视图中显示图像但是当我滚动集合视图时它会挂起。这是我的代码

-(void)viewWillAppear:(BOOL)animated
{
    CGRect screen = [[UIScreen mainScreen] bounds];

    CGFloat height = CGRectGetHeight(screen);

    PFQuery * query = [PFQuery queryWithClassName:@"Static_Wallpaper"];
    [query selectKeys:@[@"thumbnail"]];
    if (height == 480) {
        [query selectKeys:@[@"image4s"]];
    }
    else{
        [query selectKeys:@[@"image6s"]];
    }

    [query findObjectsInBackgroundWithBlock:^(NSArray * objects, NSError * error){
        if (!error) {
            [imgArry arrayByAddingObjectsFromArray:objects];
            imgArry = [[NSMutableArray alloc] initWithArray:objects];
            NSLog(@"%lu",(unsigned long)imgArry.count);
            [cllectionView reloadData];

        }

    }];

}

以下是填充集合视图中图像的代码

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return imgArry.count;
}


- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *identifier = @"Cell";

    CustomCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
    PFObject *imageObject = [imgArry objectAtIndex:indexPath.row];
    PFFile *imageFile = [imageObject objectForKey:@"image4s"];
    [imageFile getDataInBackgroundWithBlock:^(NSData *data, NSError *error) {
        if (!error){
            NSLog(@"is there any data? %@", data);
            cell.imgView.image = [UIImage imageWithData:data];
            ;

        }
        else {
            NSLog(@"no data!");
        }
    }];



    return cell;
}

2 个答案:

答案 0 :(得分:1)

您的下载任务可能会阻止主线程。您可以尝试使用SDWebImage或异步下载任务并显示图像

答案 1 :(得分:1)

添加SDWebimage,您需要执行以下代码:

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *identifier = @"Cell";

    CustomCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
    PFObject *imageObject = [imgArry objectAtIndex:indexPath.row];
    PFFile *imageFile = [imageObject objectForKey:@"image4s"];
    NSString *UserProfile = [file url];

                    if([[SDWebImageManager sharedManager] diskImageExistsForURL:[NSURL URLWithString:UserProfile]])
                    {
                        NSString *key = [[SDWebImageManager sharedManager] cacheKeyForURL:[NSURL URLWithString:UserProfile]];
                        UIImage *image = [[SDImageCache sharedImageCache] imageFromDiskCacheForKey:key];
                        cell.imgView.image=image;
                    }
                    else
                    {
                        cell.imgView.image=[UIImage imageNamed:@"UserUpdationImageCell.png"];
                        [cell.imgView  sd_setImageWithURL:[NSURL URLWithString:UserProfile] placeholderImage:[UIImage imageNamed:@"UserUpdationImageCell.png"]];
                    }



    return cell;
}