答案 0 :(得分:3)
这是一个UITableView
,带有分组样式。 UITableViewCell
正在使用UITableViewCellAccessoryType
UITableViewCellAccessoryCheckmark
。其他选项如下:
typedef enum {
UITableViewCellAccessoryNone,
UITableViewCellAccessoryDisclosureIndicator,
UITableViewCellAccessoryDetailDisclosureButton,
UITableViewCellAccessoryCheckmark
} UITableViewCellAccessoryType;
要在图像中获得效果,您可以在xib文件中将UITableView
设置为分组。并根据需要使用配件。
额外信息: