UITableViewCell 的附件类型 accessoryType 选中详情箭头

Posted wangwei-Carry

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UITableViewCell 的附件类型 accessoryType 选中详情箭头相关的知识,希望对你有一定的参考价值。

 UITableViewCell * cell = [[UITableViewCell alloc] init];

设置cell的附件类型:

// >1 打钩 选中
//    cell.accessoryType  = UITableViewCellAccessoryCheckmark;
    // >2 圆圈 + 感叹号
//    cell.accessoryType  = UITableViewCellAccessoryDetailButton;
    // >3 箭头 +(2)
//    cell.accessoryType  = UITableViewCellAccessoryDetailDisclosureButton;
    // > 4 箭头
    cell.accessoryType  = UITableViewCellAccessoryDisclosureIndicator;








以上是关于UITableViewCell 的附件类型 accessoryType 选中详情箭头的主要内容,如果未能解决你的问题,请参考以下文章

在 UITableViewCell 中使用备用附件类型

在 UiTableViewCell 上设置时,DisclosureButton Indicator 或任何类型的附件类型似乎都没有出现

在 tableView 中修改 UITableViewCell 附件类型时出现问题:didSelectRowAtIndexPath:

将 UITableViewCell 附件放在顶部

附件视图超出 UITableViewCell 的可见范围

从 UITableViewCell 的附件视图中删除视图不起作用