我是iPhone
开发新手,xcode 3.2.6
我想知道如何在导航栏中创建一个按钮,该按钮将显示一个下拉列表,其中包含一个我将编程执行的列表。怎么做?
问问题
3277 次
1 回答
5
首先,您需要一个UINavigationController
,它将为您提供UINavigationbar
. 在您的.m
文件中,您可以设置一个按钮。
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(dropDown:)];
然后你添加一个方法来处理触摸。
- (void) dropDown: (id) sender;
编辑
KSPopoverView TSPopover是一些开源的 Popover。
于 2012-05-06T11:11:44.727 回答