码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 导航栏颜色字体等的自定义

时间:2016-08-17 13:47:44      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:

1.设置导航栏中间文字的文字颜色和文字大小

方法一:系统方法

self.title = @"下载微课";//在有navigationController的控制器中,作用与self.navigationItem.title = @"下载微课";相同
[self.navigationController.navigationBar setTitleTextAttributes:
  @{NSFontAttributeName:[UIFont systemFontOfSize:18],
    NSForegroundColorAttributeName:[UIColor whiteColor]}];//系统方法

 方法二:自定义控件

self.navigationItem.title = @"下载微课";
//修改导航栏
UILabel *titleLable = [[UILabel alloc]initWithFrame:CGRectMake(0,0,100,30)];
titleLable.text = @"下载微课";
titleLable.textColor = [UIColor whiteColor];
titleLable.font = [UIFont systemFontOfSize:18];
self.navigationItem.titleView = titleLable;

 效果图:

2.设置返回键的颜色和样式

 

iOS 导航栏颜色字体等的自定义

标签:

原文地址:http://www.cnblogs.com/wusang/p/5779461.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!