UINavigationBar的常见用法总结

在项目中,我们经常需要去定制导航栏及状态栏的显示样式,或者显示/隐藏。下面总结一下常见的用法。

设置导航栏的title

有两种办法:

  1. 通过navigationItem修改
    self.navigationItem.title = @"学习导航栏中";
  2. 通过ViewController修改
    self.title = @"学习导航栏中"

设置导航栏的背景颜色

self.navigationController.navigationBar.barTintColor = [UIColor greenColor];
效果:

UINavigationBar的常见用法总结_第1张图片
bar_background_color.png

设置导航栏标题的字体,颜色

NSDictionary *attributes = @{NSForegroundColorAttributeName : [UIColor cyanColor], NSFontAttributeName: [UIFont systemFontOfSize: 30]};
[self.navigationController.navigationBar setTitleTextAttributes: attributes];

效果:


UINavigationBar的常见用法总结_第2张图片
title_font_and_color.png

设置导航栏背景图片

这里为了简单起见,用颜色绘制出图片。

UIImage *image1 = [UIImage imageWithColor: [UIColor redColor]];
UIImage *image2 = [UIImage imageWithColor: [UIColor blueColor]];
UINavigationBar *navBar = self.navigationController.navigationBar;
[navBar setBackgroundImage: image1 forBarMetrics: UIBarMetricsDefault];
[navBar setBackgroundImage: image2 forBarMetrics: UIBarMetricsCompact];

设定背景图片时,要指定图片适用的场合。UIBarMetricsDefault用于竖屏时,UIBarMetricsCompact用于横屏时。

设置导航栏为透明效果

导航栏默认就是半透的效果,但如果想实现alpha值从0到1的任意透明度,可用下面的代码。

CGFloat alphaValue = 0.2; //可设为0到1之间的任意值
UINavigationBar *navBar = self.navigationController.navigationBar;
[navBar setBackgroundImage: [UIImage imageWithColor: [UIColor colorWithRed: 0 green: 0 blue: 1 alpha: alphaValue]] forBarMetrics: UIBarMetricsDefault];

如果需要在拖动ScrollView的过程中,修改导航栏的透明度,就要用到上面的代码。

隐藏导航栏下方的分隔线

导航栏下方,默认带有一条灰色的分隔线。如果想要隐藏,需要同时设置和backgroundImage和shadowImage两个属性。如果不设置backgroundImage,那么即使设了shadowImage,也不会生效。

[self.navigationController.navigationBar setBackgroundImage: [UIImage new] forBarMetrics: UIBarMetricsDefault];
self.navigationController.navigationBar.shadowImage = [UIImage new];

修改导航栏下方的分隔线颜色

既然为shadowImage赋值为[UIImage New]时,可以隐藏分隔线,那么我们也可以根据此原理,来修改分隔线的颜色。

[self.navigationController.navigationBar setBackgroundImage: [UIImage new] forBarMetrics: UIBarMetricsDefault];
self.navigationController.navigationBar.shadowImage = [UIImage imageWithColor: [UIColor redColor]];

在导航栏的标题上方增加一个提示文字

self.navigationItem.prompt = @"Navigation prompts appear at the top.";
UIImage *image1 = [UIImage imageWithColor: [UIColor yellowColor]];
UIImage *image2 = [UIImage imageWithColor: [UIColor purpleColor]];
UINavigationBar *navBar = self.navigationController.navigationBar;
[navBar setBackgroundImage: image1 forBarMetrics: UIBarMetricsDefaultPrompt];
[navBar setBackgroundImage: image2 forBarMetrics: UIBarMetricsCompactPrompt];
UINavigationBar的常见用法总结_第3张图片
prompt.png

在设置了prompt的情况下,导航栏的高度会变大。相对应的,新增了两种BarMetrics:UIBarMetricsDefaultPrompt和UIBarMetricsCompactPrompt,分别对应于竖屏和横屏。

设置导航栏左右两侧的按钮

UIBarButtonItem *backItem = [[UIBarButtonItem alloc] initWithTitle: @"返回" style: UIBarButtonItemStylePlain target: self action: @selector(onBack)];
UIBarButtonItem *closeItem = [[UIBarButtonItem alloc] initWithTitle: @"关闭" style: UIBarButtonItemStylePlain target: self action: @selector(onClose)];
self.navigationItem.leftBarButtonItems = @[backItem, closeItem];
    
UIBarButtonItem *right1 = [[UIBarButtonItem alloc] initWithTitle: @"右1" style: UIBarButtonItemStylePlain target: nil action: nil];
UIBarButtonItem *right2 = [[UIBarButtonItem alloc] initWithTitle: @"右2" style: UIBarButtonItemStylePlain target: nil action: nil];
self.navigationItem.rightBarButtonItems = @[right1, right2];

设置导航栏的标题为视图

UISegmentedControl *segControl = [[UISegmentedControl alloc] initWithItems:@[@"男生",@"女生", @"全部"]];
[segControl setSelectedSegmentIndex:0];
self.navigationItem.titleView = segControl;
UINavigationBar的常见用法总结_第4张图片

设置导航栏的渲染颜色

UINavigationBar的tintColor属性,可以用来修改返回按钮,以及左右两侧的按钮的文字的颜色。

self.title = NSStringFromClass([self class]);
self.navigationController.navigationBar.tintColor = [UIColor yellowColor];
    
UIBarButtonItem *right1 = [[UIBarButtonItem alloc] initWithTitle: @"右1" style: UIBarButtonItemStylePlain target: nil action: nil];
UIBarButtonItem *right2 = [[UIBarButtonItem alloc] initWithTitle: @"右2" style: UIBarButtonItemStylePlain target: nil action: nil];
self.navigationItem.rightBarButtonItems = @[right1, right2];
UINavigationBar的常见用法总结_第5张图片
tintColor.png

隐藏导航栏

self.navigationController.navigationBarHidden = YES;

修改返回按钮

方法1:修改UINavigationItem的leftBarButtonItem(s)

UIImage *leftButtonIcon = [[UIImage imageNamed:@"titlebar_back_normal"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithImage:leftButtonIcon
                                                                style:UIBarButtonItemStylePlain
                                                                  target:self
                                                                  action:@selector(goToBack)];
    
UIBarButtonItem *negaSpacer = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
    negaSpacer.width = -20.f;
self.navigationItem.leftBarButtonItems = @[negaSpacer, leftButton];
UINavigationBar的常见用法总结_第6张图片
backbutton.png

这种方法的好处是,可以设定返回按钮的响应函数;但是也会带来一个问题,就是从左边屏幕的边缘,向右滑动时,不能返回上级界面了,也就是右滑手势失效了。解决办法是,在push一个ViewController之后,将self.navigationController.interactivePopGestureRecognizer.delegate 设为nil.

TestBackButton *vc = [TestBackButton new];
[self.navigationController pushViewController: vc animated: YES];
self.navigationController.interactivePopGestureRecognizer.delegate = nil;

方法2:设置返回按钮的图片,将标题置为空字符串

UIImage *backButtonBackgroundImage = [UIImage imageNamed:@"Menu"];
    
id appearance = [UIBarButtonItem appearanceWhenContainedIn:[CustomBackButtonNavController class], nil];
[appearance setBackButtonBackgroundImage:backButtonBackgroundImage forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
    
// Provide an empty backBarButton to hide the 'Back' text present by
// default in the back button.
//
// NOTE: You do not need to provide a target or action.  These are set
//       by the navigation bar.
// NOTE: Setting the title of this bar button item to ' ' (space) works
//       around a bug in iOS 7.0.x where the background image would be
//       horizontally compressed if the back button title is empty.
UIBarButtonItem *backBarButton = [[UIBarButtonItem alloc] initWithTitle:@" " style:UIBarButtonItemStylePlain target:nil action:NULL];
self.navigationItem.backBarButtonItem = backBarButton;

这种方法不会影响右滑手势,但是返回按钮的响应函数是系统内置的,无法修改,即使你指定了target和action,也不会被调用。
另外需要注意的是,假设视图控制器A设置了backBarButtonItem,那么只有当从A跳转到B时,才会用到这些设置。这和leftBarButtonItem(s)和rightBarButtonItem(s)是不同的。

设置状态栏样式及是否隐藏

在iOS7及以后的版本中,苹果推荐使用基于ViewController的方案,UIApplication类中的setStatusBarStyle, setStatusBarHidden等方法将被废弃。通过在Info.plist中添加UIViewControllerBasedStatusBarAppearance,并将其置设为YES,APP就声明自己使用基于ViewController的方案。


InfoPlist.png

在自己的视图控制器类中,重写两个方法:

- (UIStatusBarStyle)preferredStatusBarStyle {
    return UIStatusBarStyleLightContent;
}

- (BOOL)prefersStatusBarHidden {
    return YES;
}

但是要注意的是,如果视图是嵌入在容器类的视图控制器内,如UINavigationController,那么框架会去调用容器视图控制器的上述两个方法。所以需要自定义一个UINavigationController的子类,重写上述的两个方法。

- (UIStatusBarStyle)preferredStatusBarStyle {
    return self.topViewController.preferredStatusBarStyle;
}

- (BOOL)prefersStatusBarHidden {
    return self.topViewController.prefersStatusBarHidden;
}

结束语

个人水平有限,如果文中有错误之处,欢迎指正。

你可能感兴趣的:(UINavigationBar的常见用法总结)