在没有自定义单元格的情况下向 uitableview 显示详细信息披露按钮

Posted

技术标签:

【中文标题】在没有自定义单元格的情况下向 uitableview 显示详细信息披露按钮【英文标题】:show a detaildisclosure button to the uitableview without custom cell 【发布时间】:2010-03-08 06:26:06 【问题描述】:

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

【问题讨论】:

【参考方案1】:

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

- (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;

[单元格 setAccessoryType:UITableViewCellAccessoryDe​​tailDisclosureButton];

【讨论】:

【参考方案2】:
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;

【讨论】:

以上是关于在没有自定义单元格的情况下向 uitableview 显示详细信息披露按钮的主要内容,如果未能解决你的问题,请参考以下文章

如何在没有自定义单元格的情况下将文本包装在 UITableViewCell 中

如何在Iphone +上仅将表格视图自定义单元格的左上角和右上角半径转角

如何更改自定义单元格的 UILabel 文本?

在没有TypeInfo的情况下向Jackson提供自定义对象实例

带有自定义 xib 的 TableCellView 未加载

自定义单元格的“没有重复使用表格单元格的索引路径”问题