表格单元格字幕未显示

时间:2012-02-20 21:32:01

标签: objective-c ios cell subtitle

我在检查器中将单元格样式设置为subtile但仍然没有字幕,只是空白但显示标题  这是视图控制器中的部分:

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

UITableViewCell *cell = nil;

cell = [tableView dequeueReusableCellWithIdentifier:@"homeworkcell"];

if(cell == nil)
{
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault  reuseIdentifier:@"homeworkcell"];

}
cell.textLabel.text = [tabledata objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [tablesubtitles objectAtIndex:indexPath.row];
cell.textLabel.font = [UIFont systemFontOfSize:14.0];

 //static NSString *CellIdentifier = @"Cell";

  /* if (cell == nil) {
    cell = [[UITableViewCell alloc]
            initWithStyle:UITableViewCellStyleSubtitle
            reuseIdentifier:CellIdentifier];
  }*/

 // Configure the cell.
 //-----------------------------------------START----------------------------Set image of  cell----
  cellImage = [UIImage imageNamed:@"checkboxblank.png"];

 cell.imageView.image = cellImage;

 //--------------------------------------------END---------------------------end set image of cell--  

 return cell;

}

1 个答案:

答案 0 :(得分:5)

您需要在创建新UITableViewCellStyleSubtitle时使用UITableViewCell,而不是UITableViewCellStyleDefaultUITableViewCellStyleDefault仅显示单元格中的textLabel,而不显示detailTextLabel

请参阅UITableViewCell参考的“单元格样式”部分和Table View Programming Guide的“表格单元格的标准样式”。