PFQueryTableViewController Parse. Не загружается изображение

Привет я пытаюсь код ниже и я не могу получить мое изображение, показывающее

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object
{
     static NSString *CellIdentifier = @"Cell";

     PFTableViewCell *cell = (PFTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
     if (cell == nil) {
     cell = [[PFTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
     }

     // Configure the cell
     cell.textLabel.text = [object objectForKey:@"venueName"];
     cell.imageView.file = [object objectForKey:@"image"];
    [cell.imageView.file getDataInBackgroundWithBlock:^(NSData *data, NSError *error){
        cell.imageView.image = [UIImage imageWithData:data];
    }];

     return cell;
 }

Я также пытаюсь:

[cell.imageView loadInBackground];

и ничего. Нужно ли вручную вставлять UIImage в ячейку?

С уважением

2 ответа

Чтобы загрузить изображение с Parse.com (используя PFImageView), вы просто делаете это:

   creature.file = (PFFile *)file;
   [creature loadInBackground];

Вы уверены, что свойство image является файлом? Если это так, попробуйте это:

PFFile *theImage = [object objectForKey:@"image"];
[theImage getDataInBackgroundWithBlock:^(NSData *data, NSError *error){
    NSData *imageFile = [theImage getData];
    cell.imageView.image = [UIImage imageWithData:imageFile];
}];
Другие вопросы по тегам