簡體   English   中英

如何在UINavigation欄中添加動態/多按鈕?

[英]How to add dynamic/multi button in UINavigation Bar?

如何在UINavigatation Bar中添加動態/多按鈕?

如下圖所示:

登錄工具欄

我不支持iOS5,但是在iOS4中,您只能這樣做(甚至制作自己的)導航。 使其具有自定義功能。

您可以使用一個UIToolBar,然后保留多個UIBarButtonItem對象。

- (void)viewDidLoad {
    [super viewDidLoad];




    // create a toolbar to have two buttons in the right

        UIToolbar* tools = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 133, 44.01)];

        // create the array to hold the buttons, which then gets added to the toolbar
        NSMutableArray* buttons = [[NSMutableArray alloc] initWithCapacity:2];

        // create a standard "add" button
        UIBarButtonItem* bi = [[UIBarButtonItem alloc]
                               initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(add)];
        bi.style = UIBarButtonItemStyleBordered;
        [buttons addObject:bi];
        [bi release];


        // create a standard "refresh" button
        bi = [[UIBarButtonItem alloc]
              initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh target:self action:@selector(refresh)];
        bi.style = UIBarButtonItemStyleBordered;
        [buttons addObject:bi];
        [bi release];

        // stick the buttons in the toolbar
        [tools setItems:buttons animated:NO];

        [buttons release];

        // and put the toolbar in the nav bar
        self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:tools];
        [tools release];

}

-(void)add{
    NSLog(@"Code to add the row in tableview");
}

-(void)refresh {
    NSLog(@"code to refresh the tableView");
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM