iOS UINavigationBar 使用總結

UINavigationBar是我們在開發過程中經常要用到的一個控件,下面我會爲大家介紹一些常用的用法。

1. 設置導航欄的標題

這個不多說,直接上代碼
self.navigationItem.title = @"UINavigationBar使用總結";

2. 設置導航欄的背景顏色

//通過barTintColor來設置背景色
 self.navigationController.navigationBar.barTintColor = [UIColor redColor];

得到的效果如下:


barTintColor: 這個屬性需要在iOS7以上纔可以使用; 如果要支持iOS6以及以下的系統,可以參考這篇文章:UINavigationBar Background Color 

3. 設置導航欄的背景圖片

除了通過設置背景顏色來改變導航欄的外觀外,我們還可以通過背景圖片來設置導航欄的外觀。

[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"Background"]
                                                  forBarMetrics:UIBarMetricsDefault];

在這裏得稍微說說UIBarMetrics這個枚舉, 它主要是用來控制在不同狀態下導航欄的顯示。和UIButton的
- (void)setBackgroundImage:(nullable UIImage *)image forState:(UIControlState)state這個方法有點類似。

//表示橫屏豎屏都顯示
UIBarMetricsDefault,
//表示在只橫屏下才顯示,和UIBarMetricsLandscapePhone功效一樣,不過iOS8已經棄用了
UIBarMetricsCompact,
UIBarMetricsDefaultPrompt和UIBarMetricsCompactPrompt這兩個我還沒搞清楚是什麼意思,有知道的朋友不妨給我們來普及一下。。

4. 更改頂部狀態欄的顏色

從效果圖可以看出,我們設置背景色或者背景圖之後,狀態欄依然還是默認的黑色,這樣感覺不好看。好在,系統給我們提供了UIStatusBarStyleDefaultUIStatusBarStyleLightContent兩種樣式供我們選擇。

  • UIStatusBarStyleDefault,系統的默認樣式,黑色內容,用於淺色的背景(如白色)
  • UIStatusBarStyleLightContent 白色內容,用於深色的背景(如紅色)

下面來看看具體怎麼實現,主流的實現方式是分兩步:

  1. 在工程的Info.plist文件中添加一行UIViewControllerBasedStatusBarAppearance,選擇Boolean類型,並設置爲YES,Xcode會自動把名稱變爲View controller-based status bar appearance。

  2. 在你的ViewController中添加下面的方法
    -(UIStatusBarStyle)preferredStatusBarStyle{
     return UIStatusBarStyleLightContent;
    }

想知道更多地方式,可以參考這兩個頁面:How to change Status Bar text color in iOS 7 和 iOS7下Status Bar字體顏色修改

另外,特別需要注意的是,如果你的ViewController是通過navigationController push進來的,還需要加下面一句代碼才能生效:
self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
具體,可參考UIStatusBarStyle PreferredStatusBarStyle does not work on iOS 7

恩,我們來看看運行效果。


5. 設置返回按鈕

從上面的效果圖中我們可以看到返回按鈕還是默認的藍色按鈕,下面我將會大家來介紹返回按鈕的個性化。

  • 設置返回按鈕的顏色
    只需要設置tintColor屬性即可
    self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
    得到的效果圖如下:

  • 只設置返回按鈕的圖片
- (void)goToBack {
    [self.navigationController popViewControllerAnimated:YES];
}

- (void)setBackButtonWithImage {
    UIImage *leftButtonIcon = [[UIImage imageNamed:@"LeftButton_back_Icon"]
                               imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
    UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithImage:leftButtonIcon
                                                                   style:UIBarButtonItemStyleBordered
                                                                  target:self
                                                                  action:@selector(goToBack)];
    self.navigationItem.leftBarButtonItem = leftButton;

    //修復navigationController側滑關閉失效的問題
    self.navigationController.interactivePopGestureRecognizer.delegate = (id)self;
}

得到的效果如下:


這裏需要注意的地方有三點:

  1. 需要自己實現返回按鈕的事件。
  2. 特別的解釋下UIImage的imageWithRenderingMode:方法,參數UIImageRenderingModeAlwaysOriginal 表示總是用原圖渲染,如果不這麼設置,返回按鈕將會顯示tintColor的顏色(默認爲藍色)。UITabbarItem也存在同樣地問題。 
  3. 我們自己設置返回按鈕,會導致系統的側滑關閉效果失效。添加上面代碼中最後一句代碼即可修復。
  • 僅設置返回按鈕的文字
- (void)setBackButtonTitle {
    UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"取消", nil)
                                                                   style:UIBarButtonItemStylePlain
                                                                  target:self action:@selector(goToBack)];
    leftButton.tintColor = [UIColor whiteColor];
    self.navigationItem.leftBarButtonItem = leftButton;
}

得到的效果如下:


  • 自定義返回按鈕
    如果上面幾種方式還無法滿足你的要求(比如,需要同時設置返回按鈕文字和圖片),就需要用到UIBarButtonIteminitWithCustomView方法。
- (void)setCustomLeftButton {
    UIView* leftButtonView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 60, 40)];
    UIButton* leftButton = [UIButton buttonWithType:UIButtonTypeSystem];
    leftButton.backgroundColor = [UIColor clearColor];
    leftButton.frame = leftButtonView.frame;
    [leftButton setImage:[UIImage imageNamed:@"LeftButton_back_Icon"] forState:UIControlStateNormal];
    [leftButton setTitle:@"返回" forState:UIControlStateNormal];
    leftButton.tintColor = [UIColor redColor];
    leftButton.autoresizesSubviews = YES;
    leftButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
    leftButton.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin;
    [leftButton addTarget:self action:@selector(goToBack) forControlEvents:UIControlEventTouchUpInside];
    [leftButtonView addSubview:leftButton];
    UIBarButtonItem* leftBarButton = [[UIBarButtonItem alloc] initWithCustomView:leftButtonView];
    self.navigationItem.leftBarButtonItem = leftBarButton;
}

得到的效果圖如下:


設置rightBarButtonItem基本上脫離不了上面的幾種方式,大家可以參照上面返回按鈕的設置方式。

6. 隱藏導航欄底部的線條

有時候遇到一些特殊的要求,需要隱藏導航欄底部的線條。
兩行代碼就可以做到。

  • 設置導航欄的背景圖(setBackgroundImage方法)
  • 設置導航欄的shadowImage (setShadowImage方法)
UINavigationBar *navigationBar = self.navigationController.navigationBar;
    //設置透明的背景圖,便於識別底部線條有沒有被隱藏
    [navigationBar setBackgroundImage:[[UIImage alloc] init]
                       forBarPosition:UIBarPositionAny
                           barMetrics:UIBarMetricsDefault];
    //此處使底部線條失效
    [navigationBar setShadowImage:[UIImage new]];

來看看效果圖:


另外,還有一種做法,一行代碼就可以達到效果,也真是夠神奇的。。

//方法二:
    self.navigationController.navigationBar.clipsToBounds = YES;

想要知道更詳細的內容可以參考這個頁面:How to hide iOS7 UINavigationBar 1px bottom line

7. 設置導航條底部線條的顏色

有了上面的基礎,設置導航欄線條的顏色就變得很簡單了。
首先,我做了個UIImage的分類:通過顏色轉成UIImage;
然後,用上面的方案來設置導航欄底部線條。

顏色轉圖片的代碼:

@implementation UIImage (ColorImage)

+ (UIImage *)imageWithColor:(UIColor *)color
{
    CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetFillColorWithColor(context, [color CGColor]);
    CGContextFillRect(context, rect);

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return image;
}

@end

設置導航欄底部線條顏色的代碼:

UINavigationBar *navigationBar = self.navigationController.navigationBar;
    [navigationBar setBackgroundImage:[[UIImage alloc] init]
                       forBarPosition:UIBarPositionAny
                           barMetrics:UIBarMetricsDefault];
    //此處使底部線條顏色爲紅色
    [navigationBar setShadowImage:[UIImage imageWithColor:[UIColor redColor]]];

依照慣例,看下效果圖:


當然還有其他的方式也可以做到,如addSubview, addSubLayer等。感興趣的話可以參考下這個頁面:iOS7 - Change UINavigationBar border color

最後,奉上Demo的地址:NavigationBarDemo

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章