iOS 导航栏的属性设置

iOS中设置导航栏背景、字体属性

---------------------------------------------------

1、自定义导航控制器作为基类,在 + (void)initialize 方法中设置偏好设置,不要在 + (void)load 方法中设置

+ (void)initialize {

// 设置 两侧按钮 的颜色tintColor(标题除外)

[[UINavigationBar appearance] setTintColor:FGCOLOR]; // FGCOLOR 设置返回按钮的颜色tintColor(标题除外)

// 导航栏 背景色

[[UINavigationBar appearance] setBarTintColor:BGCOLOR];

// 标题属性

[[UINavigationBar appearance] setTitleTextAttributes:@{

NSForegroundColorAttributeName:[UIColor colorWithRGBHex:0x333333],

NSFontAttributeName : [UIFont systemFontOfSize:18]

}];

// 设置 导航栏按钮 文字颜色(标题除外)

/*

UIBarButtonItem *item = [UIBarButtonItem appearance];

NSDictionary *atts = @{

NSForegroundColorAttributeName : [UIColor colorWithRGBHex:0xff0000]

};

[item setTitleTextAttributes:atts forState:UIControlStateNormal];

*/

}

时间: 2024-11-06 05:30:10

iOS 导航栏的属性设置的相关文章

iOS导航栏相关属性

1 //1. 设置navigationBar是否半透明效果,默认是 =YES 的,我们把它变成NO就可以设置navigationBar的颜色为不透明的颜色 2 self.navigationController.navigationBar.translucent = NO; //不透明 3 //2. 这个颜色设置默认包含了状态栏 4 self.navigationController.navigationBar.barTintColor = [UIColor redColor]; 5 6 //3

状态栏、导航栏、导航控制器相关属性设置等注意事项

2015年07月08日 1.对于 IOS6 导航栏背景图片为 44 则@2x 得设计为 88 2.对于 IOS7 导航栏背景图片为 64 则@2x 得设计为 128 出现以上差异原因是由于IOS6里面,状态栏20是不包括在导航栏里面的,而 IOS7是包含在导航栏里面的. 3. 修改状态栏的文字颜色(全局修改) 1. 首先先在 info.plist文件中,先添加一个View controller-based status bar appearance   的选项 并设置为 NO. 2.这是可以使用

小程序配置单个页面导航栏的属性(微信小程序交流群:604788754)

配置单个页面导航栏的属性: 就在所要配置页面相对应的json文件中写入以下想要设置的属性: { "navigationBarBackgroundColor": "#ffffff",    "navigationBarTextStyle": "black",    "navigationBarTitleText": "小程序" } 属性只需要放在大括号里面即可,每个属性用逗号隔开. 如果不

ios 导航栏透明, 上下滑动 导航栏 颜色渐变

p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px "PingFang SC"; color: #008400 } p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #3d1d81 } p.p3 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #008400 } p.p4 {

02---按钮的设置 控制器拥有导航栏包装一层导航控制器 添加子控制器 UIBarButtonItem导航按钮 设置导航栏UINavigationBar主题 设置状态栏样式

一.按钮的设置 1.设置背景图片 [btn setBackgroundImage:image forState:UIControlStateNormal]; 2.内部UIImageView 1> 设置内部UIImageView的图片 [btn setImage:image forState:UIControlStateNormal]; // 不能写成btn.imageView.image = image; 2> 调整内部图片的内容模式 self.imageView.contentMode =

IOS导航栏的使用方法

本文是使用纯代码实现一个导航栏的效果.单击按钮并且产生事件.基本思路是: 1.创建一个导航栏(UINavigationBar对象) 2.创建一个导航栏集合(UINavigationItem对象) 3.创建一个左边按钮.一个右边按钮(UIBarButtonItem对象),并实现对应的事件方法 4.将导航栏集合添加到导航栏中,设置动画关闭 5.把左右两个按钮添加到导航栏集合中去 6.在视图中显示当前创建的导航栏 具体的实现代码如下: ViewController.h文件中的代码不用改变,如下所示:

转:ios导航栏设置

原帖:http://www.cocoachina.com/industry/20131104/7287.html 本文提供的代码需要用Xcode 5来执行.如果你还在使用老版本的Xcode,那么在运行示例之前请将Xcode升级到Xcode 5. iOS 7中默认的导航栏 在开始定制之前,我们先来看看iOS 7中默认导航栏的外观.通过Xcode用Single View Controller模板创建一个工程.然后将view controller嵌入到一个navigation controller中.

iOS 导航栏黑线,UIImage 枚举处理方式

ios 找出导航栏下面的黑线(可隐藏,改变样式等) http://www.jianshu.com/p/effa4a48f1e3 设置UIImage的渲染模式:UIImage.renderingMode http://blog.csdn.net/djxiaoyu_haha/article/details/40949083 着色(Tint Color)是iOS7界面中的一个.设置UIImage的渲染模式:UIImage.renderingMode重大改变,你可以设置一个UIImage在渲染时是否使用

自定义iOS导航栏背景,标题和返回按钮文字颜色-----转载自gyz413977349

在iOS7下,默认导航栏背景,颜色是这样的,接下来我们就进行自定义,如果你仅仅是更改一下背景和颜色,代码会很简单,不需要很复杂的自定义View来替代leftBarItem 更改导航栏的背景和文字Color 方法一: [objc] view plaincopy //set NavigationBar 背景颜色&title 颜色 [self.navigationController.navigationBar setBarTintColor:[UIColor colorWithRed:20/255.