美文网首页
iOS导航栏(笔记)

iOS导航栏(笔记)

作者: 糖炒0栗子 | 来源:发表于2015-11-18 13:19 被阅读253次
    /*1. 设置navigationBar是否半透明效果,默认是 =YES 的,
    我们把它变成NO就可以设置navigationBar的颜色为不透明的颜色*/
    self.navigationController.navigationBar.translucent = NO; //不透明
    //2. 这个颜色设置默认包含了状态栏
    self.navigationController.navigationBar.barTintColor = [UIColor redColor];  
    //3. 这个属性设置的是item的渲染色
    self.navigationController.navigationBar.tintColor = [UIColor grayColor];  
    //4. 设置导航栏title字体颜色
    //[注意:] 这个设置只能在当前界面生效,如果是在push前设置,则没有效果
    //另外:push的过去的界面title字体颜色是根据当前界面颜色确定的
    self.title = @"测试";
    self.navigationController.navigationBar.titleTextAttributes =
    @{NSForegroundColorAttributeName : [UIColor blueColor]};
    
    

    下面是和跳转相关的属性

    HotModel *model = self.dataArr[indexPath.row]; 
    DetailViewController *detailCon = [[DetailViewController alloc] init]; 
    detailCon.detailId = model.id; 
    
    //改变跳转后的item属性,比如说title,color之类的 
    UIBarButtonItem *item = [[UIBarButtonItem alloc] init];
    self.navigationItem.backBarButtonItem = item; 
    //改变item的渲染色 
    self.navigationController.navigationBar.tintColor = [UIColor whiteColor]; 
    //改变DetailCon的返回键item的标题 
    item.title = @"Back";
     [self.navigationController pushViewController:detailCon animated:YES];
    

    然后是效果图对比

    navBar1.png navBar2.png

    相关文章

      网友评论

          本文标题:iOS导航栏(笔记)

          本文链接:https://www.haomeiwen.com/subject/ggclhttx.html