我在检查器中将单元格样式设置为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;
}
答案 0 :(得分:5)
您需要在创建新UITableViewCellStyleSubtitle
时使用UITableViewCell
,而不是UITableViewCellStyleDefault
。 UITableViewCellStyleDefault
仅显示单元格中的textLabel
,而不显示detailTextLabel
。
请参阅UITableViewCell参考的“单元格样式”部分和Table View Programming Guide的“表格单元格的标准样式”。