我有以下代码:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *tableId = @"details";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:tableId];
if(cell == nil)
{
cell = [ [UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:tableId];
}
[((UIImageView *)[cell viewWithTag:101]) setImage:[UIImage imageNamed:[homeInvCaptureViewModel.productArray objectAtIndex:indexPath.row]]];
return cell;
}
我在故事板中有一个表格视图。但是,我的数据没有显示在我的表格行中。 (即imageview)。
答案 0 :(得分:0)
我只是尝试你的代码,它为我工作,所以我看到了你的错误的一些解释:
101
? details
设置为故事板中的单元格标识符?productArray
的图片名称吗?您应该在故事板中的ImageView上设置图像以识别