UITableView detailTextLabel - iphone开发

时间:2011-07-23 16:55:52

标签: iphone uitableview

为什么“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;
}

2 个答案:

答案 0 :(得分:7)

尝试更改单元格的样式,在初始化单元格时使用此代码

cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle 
                                   reuseIdentifier:CellIdentifier] autorelease];  

有关单元格样式的更多信息,请查看apple's class reference

答案 1 :(得分:2)

您选择了不支持UITableViewCellStyleDefault

的单元格样式detailTextLabel

尝试使用其他风格。

修改

您可以在initWithStyle:reuseIdentifier;方法中选择一种样式。查看描述可用单元格样式的UITableViewCell文档。