为什么“detailTextLabel”不再起作用?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell.
cell.textLabel.text=[listData objectAtIndex:[indexPath row]];
cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
cell.detailTextLabel.text=@"hi";
return cell;
}
答案 0 :(得分:7)
尝试更改单元格的样式,在初始化单元格时使用此代码
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier] autorelease];
有关单元格样式的更多信息,请查看apple's class reference
答案 1 :(得分:2)
您选择了不支持UITableViewCellStyleDefault
detailTextLabel
尝试使用其他风格。
修改强>
您可以在initWithStyle:reuseIdentifier;
方法中选择一种样式。查看描述可用单元格样式的UITableViewCell文档。