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