li--nan
//改变导航栏标题颜色及字体大小 e.g设置字体颜色为red 字体大小为18
        self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName: [UIColor redColor],
                                                                        NSFontAttributeName : [UIFont boldSystemFontOfSize:18]};
        //改变导航栏返回按钮颜色
        [self.navigationController.navigationBar setTintColor:[UIColor redColor]];
        self.title = @"相关信息";

  

分类:

技术点:

相关文章:

  • 2022-01-09
  • 2021-10-16
  • 2021-04-14
  • 2021-12-28
  • 2021-11-16
  • 2021-07-25
  • 2021-04-02
  • 2021-05-27
猜你喜欢
  • 2021-12-12
  • 2021-12-23
  • 2021-10-17
  • 2021-05-23
  • 2021-11-23
  • 2021-11-15
  • 2022-01-18
相关资源
相似解决方案