1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // TabBar.m
- // TCXF
- //
- // Created by 张毅成 on 2017/6/22.
- // Copyright © 2017年 张毅成. All rights reserved.
- //
- #import "TabBar.h"
- @implementation TabBar
- /**
- * 设置全局导航栏标题颜色
- *
- * @param globalTextColor 全局导航栏标题颜色
- */
- + (void)setGlobalTextColor: (UIColor *)globalTextColor andFontSize: (CGFloat)fontSize {
- if (globalTextColor == nil) {
- return;
- }
- if (fontSize < 6 || fontSize > 40) {
- fontSize = 16;
- }
- // UINavigationBar *navBar = [UINavigationBar appearanceWhenContainedIn:NSClassFromString(@"FYNavigationController"), nil];
- UINavigationBar *navBar = [UINavigationBar appearance];
- // 设置导航栏颜色
- NSDictionary *titleDic = @{
- NSForegroundColorAttributeName: globalTextColor,
- NSFontAttributeName: [UIFont systemFontOfSize:fontSize]
- };
- [navBar setTitleTextAttributes:titleDic];
- }
- @end
|