修改 navigationBar 底部線條顏色總結(jié)

效果圖

方法一

[self.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
[self.navigationBar setShadowImage:[self imageWithColor:[UIColor redColor] size:CGSizeMake([UIScreen mainScreen].bounds.size.width, 0.5)]];

#pragma mark - public methods
- (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size {
    if (!color || size.width <= 0 || size.height <= 0) return nil;
    CGRect rect = CGRectMake(0.0f, 0.0f, size.width, size.height);
    UIGraphicsBeginImageContextWithOptions(rect.size, NO, 0);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetFillColorWithColor(context, color.CGColor);
    CGContextFillRect(context, rect);
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return image;
}

此方法是現(xiàn)在大部分博客中有介紹的,不過有缺陷。如果 self.navigationBar.translucent = YES;navigationbar透明了挡篓。有時我們又不得不設(shè)self.navigationBar.translucent = YES;例如使用UISearchController做通訊錄時。其中的坑可以看我這篇博文介紹使用UISearchController時 navigationBar translucent 屬性導(dǎo)致的問題總結(jié)

方法二

此方法是我推薦的一種庄蹋,詳情請看代碼及代碼注釋。(不過在iOS11+后不能使用迷雪,需要使用方法三)

  1. 首先導(dǎo)入頭文件 #import <objc/runtime.h>

  2. 代碼展示

    //先查看View層次結(jié)構(gòu)
    NSLog(@"Navigationbar recursiveDescription:\n%@",[self.navigationBar performSelector:@selector(recursiveDescription)]);
    
    //打印完后我們發(fā)現(xiàn)有個高度為0.5的UIImageView 類型 SuperView type為 _UIBarBackground的視圖
    //遍歷navigationBar 屬性
    unsigned int outCount = 0;
    Ivar *ivars = class_copyIvarList([self.navigationBar class], &outCount);
    for (NSInteger i = 0; i < outCount; ++i) {
        Ivar ivar = *(ivars + i);
        NSLog(@"navigationBar Propertys:\n name = %s  \n type = %s", ivar_getName(ivar),ivar_getTypeEncoding(ivar));
    }
    free(ivars);
    
    //遍歷結(jié)果可以發(fā)現(xiàn)navigationbar 中的type 為_UIBarBackground 名稱為 _barBackgroundView
    //遍歷_barBackgroundView 中的屬性
    unsigned int viewOutCount = 0;
    UIView *barBackgroundView = nil;
    /*iOS 10.0+為`_barBackgroundView`,小于iOS10.0這個屬性名稱為`_UIBarBackground`.*/
    if (sysytemVersion<10.0) {
        barBackgroundView = [self.navigationBar valueForKey:@"_backgroundView"];
    }else{
        barBackgroundView = [self.navigationBar valueForKey:@"_barBackgroundView"];
    }
    if (barBackgroundView) {
        Ivar *viewivars = class_copyIvarList([barBackgroundView class], &viewOutCount);
        for (NSInteger i = 0; i < viewOutCount; ++i) {
            Ivar ivar = *(viewivars + i);
            NSLog(@"_barBackgroundView Propertys:\n name = %s  \n type = %s", ivar_getName(ivar),ivar_getTypeEncoding(ivar));
        }
        free(viewivars);
    }
    
    
    //找到type為 UIImageView 的屬性有_shadowView,_backgroundImageView限书。因為底部線條可以設(shè)置shadowImage,所有我們猜測是_shadowView
    UIImageView *navigationbarLineView = [barBackgroundView valueForKey:@"_shadowView"];
    if (navigationbarLineView && [navigationbarLineView isKindOfClass:[UIImageView class]]) {
        UIView *lineView = [[UIView alloc]init];
        lineView.backgroundColor = [UIColor redColor];
        lineView.translatesAutoresizingMaskIntoConstraints = NO;
        [navigationbarLineView addSubview:lineView];
        
        //這里我們要用約束不然旋轉(zhuǎn)后有問題
        [navigationbarLineView addConstraint:[NSLayoutConstraint constraintWithItem:lineView attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:navigationbarLineView attribute:NSLayoutAttributeTop multiplier:1.0 constant:0.0]];
        
        [navigationbarLineView addConstraint:[NSLayoutConstraint constraintWithItem:lineView attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:navigationbarLineView attribute:NSLayoutAttributeBottom multiplier:1.0 constant:0.0]];
        
        [navigationbarLineView addConstraint:[NSLayoutConstraint constraintWithItem:lineView attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:navigationbarLineView attribute:NSLayoutAttributeLeft multiplier:1.0 constant:0.0]];
        
        [navigationbarLineView addConstraint:[NSLayoutConstraint constraintWithItem:lineView attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:navigationbarLineView attribute:NSLayoutAttributeRight multiplier:1.0 constant:0.0]];
    }

為了更好的理解,我加了分析過程章咧,實際應(yīng)用時倦西,可以去掉分析過程。

方法三

UIView *lineView = [[UIView alloc]init];
lineView.backgroundColor = [UIColor redColor];
lineView.translatesAutoresizingMaskIntoConstraints = NO;
[self.navigationBar addSubview:lineView];
UIView *superView = self.navigationBar;    
[superView addConstraint:[NSLayoutConstraint constraintWithItem:lineView attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:superView attribute:NSLayoutAttributeBottom multiplier:1.0 constant:0.0]];
[superView addConstraint:[NSLayoutConstraint constraintWithItem:lineView attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:superView attribute:NSLayoutAttributeLeft multiplier:1.0 constant:0.0]];
[superView addConstraint:[NSLayoutConstraint constraintWithItem:lineView attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:superView attribute:NSLayoutAttributeRight multiplier:1.0 constant:0.0]];
[lineView addConstraint:[NSLayoutConstraint constraintWithItem:lineView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:1]];  

下載鏈接

GitHub

擴展

方法二中你可以寫個category添加和移除

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末慧邮,一起剝皮案震驚了整個濱河市调限,隨后出現(xiàn)的幾起案子舟陆,更是在濱河造成了極大的恐慌,老刑警劉巖耻矮,帶你破解...
    沈念sama閱讀 212,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件秦躯,死亡現(xiàn)場離奇詭異,居然都是意外死亡裆装,警方通過查閱死者的電腦和手機踱承,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來哨免,“玉大人茎活,你說我怎么就攤上這事∽镣伲” “怎么了载荔?”我有些...
    開封第一講書人閱讀 158,369評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長采桃。 經(jīng)常有香客問我懒熙,道長,這世上最難降的妖魔是什么普办? 我笑而不...
    開封第一講書人閱讀 56,799評論 1 285
  • 正文 為了忘掉前任工扎,我火速辦了婚禮,結(jié)果婚禮上衔蹲,老公的妹妹穿的比我還像新娘肢娘。我一直安慰自己,他們只是感情好舆驶,可當我...
    茶點故事閱讀 65,910評論 6 386
  • 文/花漫 我一把揭開白布橱健。 她就那樣靜靜地躺著,像睡著了一般贞远。 火紅的嫁衣襯著肌膚如雪畴博。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,096評論 1 291
  • 那天蓝仲,我揣著相機與錄音俱病,去河邊找鬼。 笑死袱结,一個胖子當著我的面吹牛亮隙,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播垢夹,決...
    沈念sama閱讀 39,159評論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼溢吻,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起促王,我...
    開封第一講書人閱讀 37,917評論 0 268
  • 序言:老撾萬榮一對情侶失蹤犀盟,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后蝇狼,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體阅畴,經(jīng)...
    沈念sama閱讀 44,360評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,673評論 2 327
  • 正文 我和宋清朗相戀三年迅耘,在試婚紗的時候發(fā)現(xiàn)自己被綠了贱枣。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,814評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡颤专,死狀恐怖纽哥,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情栖秕,我是刑警寧澤春塌,帶...
    沈念sama閱讀 34,509評論 4 334
  • 正文 年R本政府宣布,位于F島的核電站累魔,受9級特大地震影響摔笤,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜垦写,卻給世界環(huán)境...
    茶點故事閱讀 40,156評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望彰触。 院中可真熱鬧梯投,春花似錦、人聲如沸况毅。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽尔许。三九已至么鹤,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間味廊,已是汗流浹背蒸甜。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留余佛,地道東北人柠新。 一個月前我還...
    沈念sama閱讀 46,641評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像辉巡,于是被迫代替她去往敵國和親恨憎。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,728評論 2 351

推薦閱讀更多精彩內(nèi)容