美文网首页
iOS 导航栏颜色字体设置

iOS 导航栏颜色字体设置

作者: CaptainRoy | 来源:发表于2018-08-20 10:12 被阅读18次
  • 导航栏标题字体大小和颜色
NSDictionary *textAttributes = @{
                                     NSFontAttributeName : [UIFont systemFontOfSize:20.0f],
                                     NSForegroundColorAttributeName : [UIColor orangeColor]};
    [self.navigationBar setTitleTextAttributes:textAttributes];
  • 导航栏背景颜色
[self.navigationBar setBarTintColor:[UIColor blackColor]];

相关文章

网友评论

      本文标题:iOS 导航栏颜色字体设置

      本文链接:https://www.haomeiwen.com/subject/nujkiftx.html