zoukankan      html  css  js  c++  java
  • NavigationBar

    模态View显示NavigationBar

    NavigationBarViewController *navigationBar= [[NavigationBarViewController alloc]init];
    UINavigationController *nav=[[UINavigationController alloc] initWithRootViewController:navigationBar];
    [self presentViewController:nav animated:YES completion:nil];

    在 NavigationBarViewController 里面对NavigationBar设置

    self.navigationController.navigationBar.translucent = NO;// 是否透明
    [self.navigationItem setTitle:@"旅行"];

    [self.navigationController.navigationBar setBarTintColor:[UIColor redColor]];//背景颜色

    [self.navigationController.navigationBar setBarStyle:UIBarStyleBlackTranslucent];//去掉底部线条

    NSDictionary *textAttributes=@{NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName:[UIFont systemFontOfSize:20]};

    [self.navigationController.navigationBar setTitleTextAttributes:textAttributes];//字体样式

    UIBarButtonItem *leftBar=[[UIBarButtonItem alloc ]initWithTitle:@"Left" style:UIBarButtonItemStyleDone target:self action:nil];
    UIBarButtonItem *leftBar1=[[UIBarButtonItem alloc ]initWithTitle:@"Left" style:UIBarButtonItemStyleDone target:self action:nil];

    UIBarButtonItem *rightBar=[[UIBarButtonItem alloc ]initWithBarButtonSystemItem:UIBarButtonSystemItemTrash target:self action:nil];
    UIBarButtonItem *rightBar1=[[UIBarButtonItem alloc ]initWithBarButtonSystemItem:UIBarButtonSystemItemReply target:self action:nil];
    leftBar.width=-10;

    self.navigationItem.leftBarButtonItems=[NSArray arrayWithObjects:leftBar,leftBar1, nil];
    self.navigationItem.rightBarButtonItems=[NSArray arrayWithObjects:rightBar,rightBar1, nil];
    self.navigationItem.leftBarButtonItem.enabled=NO;//左边button 禁掉 灰色
    [self.navigationController.navigationBar setUserInteractionEnabled:NO]; //所有的button 都是readonly的,颜色不是灰色的

  • 相关阅读:
    Ural1387 Vasya's Dad
    SGU481 Hero of Our Time
    sjtu1590 强迫症
    sjtu1591 Count On Tree
    sjtu1585 oil
    sjtu1364 countcountcount
    sjtu1333 函数时代
    Fabric-ca client端初始化过程源码分析
    Fabric-ca server端与client端交互
    Fabric-ca server端初始化过程源码分析
  • 原文地址:https://www.cnblogs.com/zhangleixy/p/4951604.html
Copyright © 2011-2022 走看看