当前位置: 首页 > ops >正文

设置导航标题颜色以及导航条背景色



//设置导航条标题颜色

[self.navigationController.navigationBar setTitleTextAttributes: @{NSFontAttributeName:[UIFont systemFontOfSize:20],NSForegroundColorAttributeName:[UIColor whiteColor]}];

 

//或者自定义标题,新建一个lable赋给self.navigationItem.titleView 

UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 20, 320, 44)];titleLabel.backgroundColor = [CommonTools colorWithHexString:@"1680fa" alpha:1.0];titleLabel.font = [UIFont boldSystemFontOfSize:20];titleLabel.textColor = [UIColor whiteColor];titleLabel.textAlignment = NSTextAlignmentCenter;titleLabel.text = @"视频聊天";self.navigationItem.titleView = titleLabel;


//设置导航栏背景色

self.navigationController.navigationBar.barTintColor = [CommonTools colorWithHexString:@"1680fa" alpha:1.0];
colorWithHexString:@"1680fa" alpha:1.0取到的颜色接近于导航条

 
+ (UIColor *)colorWithHexString:(NSString *)hexString alpha:(CGFloat)alpha
{unsigned int red, green, blue;NSRange range;range.length =2;range.location =0;[[NSScanner scannerWithString:[hexString substringWithRange:range]]scanHexInt:&red];range.location =2;[[NSScanner scannerWithString:[hexString substringWithRange:range]]scanHexInt:&green];range.location =4;[[NSScanner scannerWithString:[hexString substringWithRange:range]]scanHexInt:&blue];return [UIColor colorWithRed:(float)(red/255.0f)green:(float)(green/255.0f)blue:(float)(blue/255.0f)alpha:alpha];
}




http://www.xdnf.cn/news/11049.html

相关文章:

  • 回归线
  • oracle数据库分层,Oracle数据仓库的分层管理器解决方案开发者网络Oracle
  • 关于WindowsMobile6.0 手机系统
  • 深入剖析ARP地址欺骗病毒原理及欺骗过程
  • PHP设置header出现警告headers already sent by (output started at......
  • C/C++ MessageBox() 弹窗的用法
  • 未来宝宝长相预测在线工具好用吗?揭秘宝宝美丽奥秘的工具
  • 大学生网页设计制作作业实例代码 (全网最全,建议收藏) HTML+CSS+JS
  • Dell 服务器安装方法介绍
  • 18个国外优质图片素材
  • 黑客编程hack/黑客入侵用什么编程语言_小白白帽子技巧
  • 黑客是怎么攻击网站的,管理员必知
  • C# Assembly 反射
  • android 推送功能
  • 推荐几个好用的网站导航
  • HttpWebResponse请求状态代码
  • css给文字设置背景色
  • GRIDVIEW内容详解
  • 超详细Lrc(Adobe Lightroom Classic)基础使用教程【0-1】
  • 多进程多线程详解
  • 什么是车载A2B音频总线?
  • 电脑创建无线网---完美软件connectify使用教程
  • 序列号大全,装机必备
  • 如何破解邮箱密码
  • 优优云验证码识别积累一二
  • python编写多人对战小游戏
  • virus.win32.parite.H病毒的查杀方法
  • 【输入法】迄今为止,居然有这么多汉字输入法!
  • sql统计表中各类型金额_大容量空气炸锅该怎么选?各类型大容量空气炸锅性价比选购分析推荐(持续更新中)...
  • Discuz! X2 如何配置伪静态