zoukankan      html  css  js  c++  java
  • IOS 导航栏属性设置

    IOS 7 以上系统导航栏:

    [[UINavigationBar appearance] setTintColor:[UIColor whiteColor]]; // 返回按钮颜色
    [UINavigationBar appearance].barTintColor = YK_BUTTON_COLOR; //背景颜色
    [[UINavigationBar appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],NSForegroundColorAttributeName,[UIFont boldSystemFontOfSize:17],NSFontAttributeName, nil]]; //标题title属性
    

      

    IOS6以上自定义导航栏:

     /*自定义标题*/    
    UILabel *vTitleLable = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 21)];
        vTitleLable.font = [UIFont boldSystemFontOfSize:17];
        vTitleLable.textColor = [UIColor whiteColor];
        vTitleLable.textAlignment = NSTextAlignmentCenter;
        vTitleLable.backgroundColor = [UIColor clearColor];
        vTitleLable.text = _titleStr;
        [self.navigationItem setTitleView:vTitleLable];
    
      /*自定义返回按钮*/
      UIBarButtonItem *vLeftButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(backButtonClicked:)];
        self.navigationItem.leftBarButtonItem = vLeftButtonItem; 
       [vLeftButtonItem release];
    

      

  • 相关阅读:
    CSS
    Form表单
    HTML入门(HB、DW)
    第一次接触HBuild
    python 数据结构中被忽视的小技巧
    flask扩展模块flask-sqlachemy 的使用---mysql数据库
    flask蓝图的使用
    基于爬虫的天气预报程序
    一个爬取股票信息的爬虫程序
    向python3进发
  • 原文地址:https://www.cnblogs.com/yqlog/p/4916654.html
Copyright © 2011-2022 走看看