zoukankan      html  css  js  c++  java
  • iOS 导航栏颜色字体等的自定义

    1.设置导航栏中间文字的文字颜色和文字大小

    方法一:系统方法

    self.title = @"下载微课";//在有navigationController的控制器中,作用与self.navigationItem.title = @"下载微课";相同
    [self.navigationController.navigationBar setTitleTextAttributes:
      @{NSFontAttributeName:[UIFont systemFontOfSize:18],
        NSForegroundColorAttributeName:[UIColor whiteColor]}];//系统方法
    

     方法二:自定义控件

    self.navigationItem.title = @"下载微课";
    //修改导航栏
    UILabel *titleLable = [[UILabel alloc]initWithFrame:CGRectMake(0,0,100,30)];
    titleLable.text = @"下载微课";
    titleLable.textColor = [UIColor whiteColor];
    titleLable.font = [UIFont systemFontOfSize:18];
    self.navigationItem.titleView = titleLable;
    

     效果图:

    2.设置返回键的颜色和样式

  • 相关阅读:
    IDEA快捷方式
    JVM调优总结
    log4g详细配置
    大前端完整学习路线(详解)
    Tomcat工作原理
    Oracle
    Servlet知识
    lmap
    常见博客API
    PL/SQL入门理解(一)
  • 原文地址:https://www.cnblogs.com/wusang/p/5779461.html
Copyright © 2011-2022 走看看