博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
设置navigationController的title的颜色
阅读量:5994 次
发布时间:2019-06-20

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

hot3.png

在navigationController中,设置self.title = "我的主页",那么默认的颜色是黑色的。如果要自定义自己的颜色,设置titleTextAttributes属性即可,在控制器中添加如下代码。

//iOS7.0之前使用UITextAttributeTextColor。iOS7.0丢弃了UITextAttributeTextColor

NSDictionary *dic =  [NSDictionary dictionaryWithObject:[UIColor redColor] forKey:UITextAttributeTextColor];

elf.navigationController.navigationBar.titleTextAttributes = dic;

//iOS7.0之后使用NSForegroundColorAttributeName

NSDictionary *dic =  [NSDictionary dictionaryWithObject:[UIColor redColor] forKey:NSForegroundColorAttributeName];

self.navigationController.navigationBar.titleTextAttributes = dic;

设置属性后效果图:

转载于:https://my.oschina.net/u/2605613/blog/672798

你可能感兴趣的文章
无向图的 DFS 和 BFS实现 (以邻接表存储的图)
查看>>
Sharepoint2010 如何 对搜索结果做自定义标签
查看>>
iOS 判断NSString是否包含某个字符串
查看>>
iOS extern 和 #define 使用
查看>>
该对象尚未初始化。请确保在所有其他初始化代码后面的应用程序启动代码中调用 HttpConfiguration.EnsureInitialized()。...
查看>>
ios上表单默认样式
查看>>
ARC下需要注意的内存问题
查看>>
使用xcode workspace 多个project协同工作
查看>>
JS执行机制
查看>>
个人项目 Individual Project
查看>>
js 小数[非]四舍五入
查看>>
Oracle 中如何判断一个字符串是否为数字
查看>>
啸叫抑制(howling suppression)
查看>>
【论文:麦克风阵列增强】Signal Enhancement Using Beamforming and Nonstationarity with Applications to Speech...
查看>>
用3个步骤实现响应式网页设计
查看>>
python - requests从excel中获取测试用例数据
查看>>
CF821E 【Okabe and El Psy Kongroo】
查看>>
CC2640R2F&TI-RTOS 拿到 TI CC2640R2F 开发板 第四件事就是 修改第三件事信号量超时改为 事件 超时,并增加 事件控制 ,用于控制LED 闪烁时间或者关闭...
查看>>
数组去重的方法
查看>>
20155229实验二 《Java面向对象程序设计》实验报告
查看>>