• 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的,颜色不是灰色的

  • 相关阅读:
    微前端的那些事儿
    网络是怎样连接的 作者户根勤 交流论坛
    数据结构与算法学习
    cpu读取指令时读取的长度
    小程序开发
    npm 安装 chromedriver 失败的解决办法
    Git:代码冲突常见解决方法
    Android通过Chrome Inspect调试WebView的H5 App出现空白页面的解决方法(不需要FQ)
    pm2
    多媒体技术及应用
  • 原文地址:https://www.cnblogs.com/zhangleixy/p/4951604.html
Copyright © 2020-2023  润新知