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.设置返回键的颜色和样式

  • 相关阅读:
    hdfs校验和
    hdfs读写策略
    hdfs架构
    hdfs数据块
    元数据
    集群的创建
    jQuery_DOM操作
    jQuery_简介_选择器
    Ajax
    MySQL整理_2_数据库操作
  • 原文地址:https://www.cnblogs.com/wusang/p/5779461.html
Copyright © 2011-2022 走看看