我正在开发一个应用程序,我想知道这些菜单被称为什么,带有复选标记的菜单等等。如果有人能给我看任何样品并告诉我它叫什么,我将不胜感激。
谢谢 - 格雷塔
这是一个UITableView
, 具有分组样式。UITableViewCell
正在使用UITableViewCellAccessoryType
UITableViewCellAccessoryCheckmark
. 其他选项如下:
typedef enum {
UITableViewCellAccessoryNone,
UITableViewCellAccessoryDisclosureIndicator,
UITableViewCellAccessoryDetailDisclosureButton,
UITableViewCellAccessoryCheckmark
} UITableViewCellAccessoryType;
要获得图像中的效果,您可以UITableView
在 xib 文件中将您的设置为分组。并根据需要使用配件。
额外的信息: