自定义导航栏按钮

Posted 小眼奇遇记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义导航栏按钮相关的知识,希望对你有一定的参考价值。

self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"侧栏" style:UIBarButtonItemStylePlain target:self action:@selector(clickleftButton:)];

 

如果我们使用这行代码来定义按钮,无论左边右边,图片还是文字,他都会把字体或图片颜色变成默认的蓝色,然而并不是我们的需求,

所以我们这样

 

    
    //导航栏 double按钮
    
    //图片
    UIImage *doubleButtonImage = [UIImage imageNamed:@"tx"];
    
    //按钮
    UIButton *doubleButton = [UIButton buttonWithType:UIButtonTypeCustom];
    doubleButton.bounds = CGRectMake(0, 0, 30, 30);
    [doubleButton setImage:doubleButtonImage forState:UIControlStateNormal];
    
    //按钮的点击事件
    [doubleButton addTarget:self action:@selector(doubleButtonClick) forControlEvents:UIControlEventTouchUpInside];
    
    //导航栏按钮
    UIBarButtonItem *doubleButtonItem = [[UIBarButtonItem alloc]initWithCustomView:doubleButton];
    
    //添加到导航栏左边
    self.navigationItem.leftBarButtonItem = doubleButtonItem;

 

 

自定义的按钮作为导航栏的按钮,重点是红色标记处,我们需要把按钮的类型设为custom而不是system,这样我们的按钮图片颜色就是本来的颜色了,如果是文字,颜色也可以自己设置下就搞定了,而不会是默认的蓝色了~

以上是关于自定义导航栏按钮的主要内容,如果未能解决你的问题,请参考以下文章

导航栏中的 Swift 自定义后退按钮

美团自定义导航栏思路以及代码

导航栏的返回按钮自定义文字

iOS 导航栏-返回按钮-自定义

iOS 11导航栏自定义后退按钮问题

自定义iOS7导航栏背景,标题和返回按钮文字颜色