2
我是iPhone
iPhone
開發使用xcode 3.2.6
我想知道如何在導航欄中創建一個按鈕,該按鈕將顯示一個下拉列表,其中包含一個列表,我將對其進行編程。怎麼做?如何製作一個顯示下拉菜單的按鈕?
我是iPhone
iPhone
開發使用xcode 3.2.6
我想知道如何在導航欄中創建一個按鈕,該按鈕將顯示一個下拉列表,其中包含一個列表,我將對其進行編程。怎麼做?如何製作一個顯示下拉菜單的按鈕?
首先,你需要一個UINavigationController
,它會給你UINavigationbar
。在您的.m
文件中,您可以設置一個按鈕。
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(dropDown:)];
然後你添加一個方法來處理觸摸。
- (void) dropDown: (id) sender;
KSPopoverViewTSPopover一些開源Popovers。
預先感謝 但正如我在本場 即時通訊新,纔可以更具體的請 – Mutawe
非常感謝說,這是一個很大的幫助我 – Mutawe