如何制作一个显示下拉菜单的按钮?

时间:2012-05-06 11:00:23

标签: iphone ios xcode menu drop-down-menu

我是使用iPhone进行xcode 3.2.6开发的新手,我想知道如何在导航栏中创建一个按钮,该按钮将显示一个下拉列表,其中包含一个列表,我将为此编程。怎么做?

1 个答案:

答案 0 :(得分:5)

首先,您需要一个UINavigationController,它会为您提供UINavigationbar。在.m文件中,您可以设置一个按钮。

self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(dropDown:)];

然后你添加一个方法来处理触摸。

- (void) dropDown: (id) sender;

修改

KSPopoverView TSPopover是一些开源的Popovers。