如何修改ios的导航条上面的文字颜色和大小等

傅峰
2023-12-01

方法一:

        利用titleTextAttributes这个属性,它上面可以修改字体的颜色,大小阴影等.如下:

[objc] view plaincopy
  1. NSDictionary *dict=[NSDictionary dictionaryWithObjects:  
  2.                         [NSArray arrayWithObjects:[UIColor whiteColor],[UIFont boldSystemFontOfSize:17],[UIColor clearColor],nil]  
  3.                                                    forKeys:  
  4.                         [NSArray arrayWithObjects:UITextAttributeTextColor,UITextAttributeFont,UITextAttributeTextShadowColor,nil]];  
  5.                 self.navigationController.navigationBar.titleTextAttributes=dict;  


方法二:

利用self.navigationItem.titleView,使用一个自定义的label来替换这个view,达到自定义导航标题的效果.

[objc] view plaincopy
  1. UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(0018020)];  
  2.      label.text=self.title;  
  3.      label.backgroundColor=[UIColor clearColor];  
  4.      label.font=[UIFont boldSystemFontOfSize:17];  
  5.      label.textAlignment=UITextAlignmentCenter;  
  6.      label.textColor=[UIColor whiteColor];  
  7.      //self.title=filename;  
  8.      self.navigationItem.titleView=label;  
 类似资料: