TableView不显示除空行之外的任何数据

时间:2014-10-24 10:45:27

标签: ios tableview

enter image description here我有以下代码:

 -(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)。

1 个答案:

答案 0 :(得分:0)

我只是尝试你的代码,它为我工作,所以我看到了你的错误的一些解释:

  1. 您是否在故事板中为您的ImageView标记设置了101
  2. 您是否将details设置为故事板中的单元格标识符?
  3. 您确定项目图片中存在productArray的图片名称吗?
  4. 您应该在故事板中的ImageView上设置图像以识别