0

在我的 UITableViewCells 中,我需要为每个单元格下载不同的图像,这种问题我该怎么办......

4

2 回答 2

2

您仍应使用该方法,然后独立配置每个单元。只要确保您的单元设置不在您的构造块上

UITableViewCell *cell = [tableView dequeue..];
if (!cell) {
    cell = ...;
}

cell.image = ...;
于 2012-12-04T12:32:27.577 回答
0

item 将是您的图像字典

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyIdentifier"];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"MyIdentifier"]];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
NSDictionary *item = (NSDictionary *)[self.content objectAtIndex:indexPath.row];
cell.textLabel.text = [item objectForKey:@"mainTitleKey"];
cell.detailTextLabel.text = [item objectForKey:@"secondaryTitleKey"];
NSString *path = [[NSBundle mainBundle] pathForResource:[item objectForKey:@"imageKey"] ofType:@"png"];
UIImage *theImage = [UIImage imageWithContentsOfFile:path];
cell.imageView.image = theImage;
return cell;
  }
于 2012-12-04T12:37:18.333 回答