UINavigationBar+UITabbar总结

前言

虽然经常使用,但是每次用的时候又要查一堆资料,特此整理下

1、统一设置NavigationBar的颜色、tint颜色、、字体

// 设置导航栏的颜色
[[UINavigationBar appearance] setBarTintColor:[UIColor redColor]];
// 设置tint颜色
[[UINavigationBar appearance] setTintColor: [UIColor whiteColor]];
// 设置导航栏上的标题的颜色、字体
[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor],NSFontAttributeName:[UIFont systemFontOfSize:15]}];
// 取消透明度
[[UINavigationBar appearance] setTranslucent:NO];
// 设置背景图片
[[UINavigationBar appearance] setBackgroundImage:xxx forBarMetrics:UIBarMetricsDefault];
// 去掉导航栏与内容之间的分割线
[self.navigationController.navigationBar setShadowImage:nil];

2、设置tabbar相关

[[UITabBar appearance] setTintColor: [UIColor blueColor]];
    //Normal
[[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:12],NSBackgroundColorAttributeName:[UIColor greenColor]} forState:UIControlStateNormal];
    //Selected
[[UITabBarItem appearance] setTitleTextAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:15],NSBackgroundColorAttributeName:[UIColor redColor]} forState:UIControlStateSelected];

// 设置tabbar上的图片不要用tintcolor,使用图片原生的样子
UIImage *normalImg = [[UIImage imageNamed:@"xxx"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
vc.tabBarItem.image = normalImg;
UIImage *selectImg = [[UIImage imageNamed:@"xxx"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
vc.tabBarItem.selectedImage = selectImg;
// 将tabbar的颜色设置为黑色
self.tabBar.barTintColor = [UIColor blackColor]
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,251评论 4 61
  • 今天上午,一条微博轰动了整个网络,导演哈文宣布了丈夫去世的消息,而这个人就是李咏。 顿时整个娱乐圈以及广大网友都陷...
    熊熊的火焰儿阅读 329评论 2 1
  • 我所写的大部分文章都是慢慢的熬出来的,但是我却还是能坚持下来。当想不出来的时候我就多看看别人的文章,多吸收一点别人...
    善行无痕阅读 139评论 0 0
  • 上一次给你们安利了贵州,今天想推荐一个距离贵州很近、适合短途旅行的网红城市,雾都重庆。 如果你还没去过重庆,你对重...
    流浪摄影师阅读 7,293评论 46 189
  • 九宫格 主题:感谢,水晶球,莫奈。时间:20分钟 我有个老师是我的作文老师,我只上了一天半的课,他...
    一颗麦稻阅读 588评论 2 5