这些菜单叫什么?

时间:2013-07-16 15:53:08

标签: ios cocoa-touch

我正在开发一个应用程序,我想知道调用哪些these菜单,带有复选标记的菜单等等。如果有人能给我看任何样品并告诉我它的名称,我会非常感激。

PICTURE OF THE APP

由于 - 格雷塔

1 个答案:

答案 0 :(得分:3)

这是一个UITableView,带有分组样式。 UITableViewCell正在使用UITableViewCellAccessoryType UITableViewCellAccessoryCheckmark。其他选项如下:

typedef enum {
   UITableViewCellAccessoryNone,
   UITableViewCellAccessoryDisclosureIndicator,
   UITableViewCellAccessoryDetailDisclosureButton,
   UITableViewCellAccessoryCheckmark
} UITableViewCellAccessoryType;

要在图像中获得效果,您可以在xib文件中将UITableView设置为分组。并根据需要使用配件。

额外信息:

http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewCell_Class/Reference/Reference.html

http://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/TableView_iPhone/AboutTableViewsiPhone/AboutTableViewsiPhone.html#//apple_ref/doc/uid/TP40007451