博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
navigation title titleColor
阅读量:5987 次
发布时间:2019-06-20

本文共 734 字,大约阅读时间需要 2 分钟。

hot3.png

很多时候需要设置导航栏的文字。

在网上找了两个记录一下 ,供大家使用。

//这两个都可以    //1       self.navigationItem.title = @"去评价";    //2    self.title = @"aaa";
//设置颜色方式一[self.navigationController.navigationBar setTitleTextAttributes:@     {     NSForegroundColorAttributeName:[UIColor whiteColor]     }];
//设置颜色方式二    UIColor * color = [UIColor whiteColor];        NSDictionary * dict = [NSDictionary dictionaryWithObject:color forKey:NSForegroundColorAttributeName];        self.navigationController.navigationBar.titleTextAttributes = dict;    // 右侧     self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"提交" style:UIBarButtonItemStylePlain target:self action:@selector(tiJiaoBtnClick:)];

 

转载于:https://my.oschina.net/kaqijiang/blog/681046

你可能感兴趣的文章
码字定式之SQL(4)
查看>>
说说我个人理解的进程和线程
查看>>
笔记本Win8 换Win7 设置 BIOS
查看>>
多媒体(3):基于WindowsAPI的视频捕捉卡操作
查看>>
解决winscp中普通用户无法上传、删除、移动文件
查看>>
Spring 获取bean 几种方式
查看>>
Attribute+Reflection,提高代码重用
查看>>
智能指针shared_ptr
查看>>
音乐播放器项目一知识点总结
查看>>
oracle job
查看>>
ubuntu 18.04 通过联网方式安装wine
查看>>
Chinese Mahjong UVA - 11210 (暴力+回溯递归)
查看>>
《机器学习实战》 in python3.x
查看>>
html5,article介绍与使用
查看>>
斑马(zebra_105sl)打印自作COM接线方法!
查看>>
Linux 多用户系统
查看>>
动画 + 设置contentoffset,然后就 蛋疼了,
查看>>
【转载】<mvc:annotation-driven />注解意义
查看>>
GPS定位源代码
查看>>
ZooKeeper 学习笔记(一)
查看>>