您好我正在尝试下面的代码而我无法显示我的图像
- (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?
此致
答案 0 :(得分:0)
要从Parse.com加载图像(使用PFImageView),您只需执行此操作:
creature.file = (PFFile *)file;
[creature loadInBackground];
答案 1 :(得分:0)
你确定属性“image”是一个文件吗?如果是,请试试这个:
PFFile *theImage = [object objectForKey:@"image"];
[theImage getDataInBackgroundWithBlock:^(NSData *data, NSError *error){
NSData *imageFile = [theImage getData];
cell.imageView.image = [UIImage imageWithData:imageFile];
}];