[iOS微博项目 - 1.1] - 设置导航栏主题(统一样式)
- 在创建item的时候逐个设置:代码超级冗余
- 抽取创建公共父类:稍好的选择,但是继承了此公共父类的控制器,就不能操作其去继承系统自带的控制器类了,造成很大的隐患。iOS中控制器不建议提取公共父类,最好直接继承系统自带控制器。
- 使用主题appearance统一设置所有UIBarButtonItem的样式:采用!在自定义的UINavigationController的类初始化方法中实现一次,就可以改变所有使用了此类的BarButtonItem样式
1 /** 类初始化的时候调用 */ 2 + (void)initialize { 3 // 初始化导航栏样式 4 [self initNavigationBarTheme]; 5 6 // 初始化导航栏item样式 7 [self initBarButtonItemTheme]; 8 } 9 10 /** 统一设置导航栏item的样式 11 * 因为是通过主题appearence统一修改所有NavivationBar的样式,可以使用类方法 12 */ 13 + (void) initBarButtonItemTheme { 14 // 设置导航栏,修改所有UINavigationBar的样式 15 UIBarButtonItem *appearance = [UIBarButtonItem appearance]; 16 17 // 设置noraml状态下的样式 18 NSMutableDictionary *normalTextAttr = [NSMutableDictionary dictionary]; 19 // 字体大小 20 normalTextAttr[NSFontAttributeName] = [UIFont systemFontOfSize:15]; 21 // 字体颜色 22 normalTextAttr[NSForegroundColorAttributeName] = [UIColor orangeColor]; 23 // 设置为normal样式 24 [appearance setTitleTextAttributes:normalTextAttr forState:UIControlStateNormal]; 25 26 // 设置highlighted状态下的样式 27 NSMutableDictionary *highlightedTextAttr = [NSMutableDictionary dictionaryWithDictionary:normalTextAttr]; 28 // 字体颜色 29 highlightedTextAttr[NSForegroundColorAttributeName] = [UIColor redColor]; 30 // 设置为normal样式 31 [appearance setTitleTextAttributes:highlightedTextAttr forState:UIControlStateHighlighted]; 32 33 // 设置disabled状态下的样式 34 NSMutableDictionary *disabledTextAttr = [NSMutableDictionary dictionaryWithDictionary:normalTextAttr]; 35 // 字体颜色 36 disabledTextAttr[NSForegroundColorAttributeName] = [UIColor lightGrayColor]; 37 // 设置为normal样式 38 [appearance setTitleTextAttributes:disabledTextAttr forState:UIControlStateDisabled]; 39 40 }
- 统一显示文字颜色:黑色
- 文字阴影:禁止
- 字体大小:20
1 /** 统一设置导航栏样式 */ 2 + (void) initNavigationBarTheme { 3 // 使用appearence(主题)设置,统一修改所有导航栏样式 4 UINavigationBar *appearance = [UINavigationBar appearance]; 5 6 // 为了统一iOS6和iOS7,iOS6需要设置导航栏背景来模拟iOS7的效果 7 if (!iOS7) { 8 [appearance setBackgroundImage:[UIImage imageWithNamed:@"navigationbar_background"] forBarMetrics:UIBarMetricsDefault]; 9 } 10 11 // 设置属性 12 NSMutableDictionary *attr = [NSMutableDictionary dictionary]; 13 // 设置字体 14 attr[NSForegroundColorAttributeName] = [UIColor blackColor]; 15 attr[NSFontAttributeName] = [UIFont systemFontOfSize:20]; 16 // 消去文字阴影,设置阴影偏移为0 17 NSShadow *shadow = [[NSShadow alloc] init]; 18 shadow.shadowOffset = CGSizeZero; 19 attr[NSShadowAttributeName] = shadow; 20 21 [appearance setTitleTextAttributes:attr]; 22 }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。