在没有自定义单元格的情况下向uitableview显示一个detaildisclosure按钮

时间:2010-03-08 06:26:07

标签: iphone uitableview accessorytype

如何在不使用自定义单元格的情况下向uitableview显示详细信息披露按钮。我通过使用accessoryType:方法知道它,但不知道如何实现..pls帮助..

2 个答案:

答案 0 :(得分:15)

//自定义表格视图单元格的外观。

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

    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil)
    {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
    }
    [cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton];
    return cell;
}

[cell setAccessoryType:UITableViewCellAccessoryDe​​tailDisclosureButton];

答案 1 :(得分:2)

cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;