哪个类用于创建可单击的部分(使用>箭头)和最后一次拍摄的复选框列表?
alt text http://developer.apple.com/iphone/library/documentation/uikit/reference/UINavigationController_Class/Art/navigation_interface.jpg
发布于 2010-06-15 21:40:42
看一看UINavigationController。
要创建带箭头的列表,请使用UITableView并在单元格上设置附件"Disclosure indicator“(在接口构建器中)。
该屏幕截图来自于设置应用程序。如果要为设置创建子面板,则需要使用不同的方法(Here is one example)
发布于 2010-06-15 21:42:16
UITableView (UITableViewController)。
复选标记和箭头是通过更改单元格的.accessoryType property添加的。要使表视图可单击,请在委托中实现-tableView:didSelectRowAtIndexPath:方法。
https://stackoverflow.com/questions/3045661
复制相似问题