码迷,mamicode.com
首页 > 其他好文 > 详细

自定义导航栏多个按钮

时间:2015-04-10 15:03:15      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

UIToolbar* tools = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 150, 45)];

    [tools setTintColor:[self.navigationController.navigationBar tintColor]];

    [tools setAlpha:[self.navigationController.navigationBar alpha]];

    NSMutableArray* buttons = [[NSMutableArray alloc] initWithCapacity:2];

    UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSearch

                                                                                   target:self action:@selector(clickSettings:)];

    UIBarButtonItem *anotherButton1 = [[UIBarButtonItem alloc] initWithTitle:@"Edit" style:UITabBarSystemItemContacts

                                                                      target:self action:@selector(clickEdit:)];

    [buttons addObject:anotherButton];

 

    [buttons addObject:anotherButton1];

 

    [tools setItems:buttons animated:NO];

  

    UIBarButtonItem *myBtn = [[UIBarButtonItem alloc] initWithCustomView:tools];

    self.navigationItem.rightBarButtonItem = myBtn; 

    

 

自定义导航栏多个按钮

标签:

原文地址:http://www.cnblogs.com/kexiaozhu/p/4414325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!