一、iOS开发中导航栏设置
1.1、导航栏透明的设置方法
//1.1.1 在具有导航栏的viewController中设置导航栏透明
[self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:0];
//这一个方法是将导航栏与主view之间的那个阴影线消除,将导航栏和view无缝连接
[self.navigationController.navigationBar setShadowImage:[UIImage new]];
[self.navigationController.navigationBar setTranslucent:NO];
//1.1.2 在创建的总导航栏控制器 或者在AppDelegate中设置导航栏透明
[[UINavigationBar appearance] setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];//这里有人可能是设置一张透明的图片,那样也可以,但是如果你不想麻烦别人或者为难自己的话,就跟我一样直接开辟一个空间不给图片。UIBarMetricsDefault这个也可以写0.
[[UINavigationBar appearance] setShadowImage:[UIImage new]];
[[UINavigationBar appearance] setTranslucent:NO];
1.2设置导航栏背景色
//1.2.1 在具有导航栏的viewController中设置导航栏背景色
[self.navigationController.navigationBar setBarTintColor:[UIColor orangeColor]];
//1.2.2 在创建的总导航栏控制器 或者在AppDelegate中设置导航栏背景色
[[UINavigationBar appearance] setBarTintColor:[UIColor redColor]];
1.3 设置导航栏中titleLabel的一些属性
/ **
* 这里主要是设置AttributeString 属性,通过对字典中的多个key值的设置,改变成我们需要的样式。
* 下面这个方法主要是对导航栏中的文字大小、文字颜色进行设置
*/
//1.3.1 在具有导航栏的viewController中设置
[self.navigationController.navigationBar setTitleTextAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:18],NSForegroundColorAttributeName:[UIColor whiteColor]}];
//1.3.2 在创建的总导航栏控制器 或者在AppDelegate中设置
[[UINavigationBar appearance] setTitleTextAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:18],NSForegroundColorAttributeName:[UIColor whiteColor]}];
1.4 修改导航栏默认的返回按钮
在viewDidLoad方法中调用下面的方法
[self configNavigation];
重写返回按钮的方法
#pragma mark - 创建导航栏
- (void) configNavigation {
UIButton *backButton = [UIButton buttonWithType:UIButtonTypeCustom];
backButton.frame = CGRectMake(0, 0, 20, 20);
[backButton setBackgroundImage:[UIImage imageNamed:@"icons_back_white"] forState:UIControlStateNormal];//我这里给的图片是一张返回的“<”这样的图片
[backButton addTarget:self action:@selector(dealBack) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *backItem = [[UIBarButtonItem alloc] initWithCustomView:backButton];
self.navigationItem.leftBarButtonItem = backItem;
}
- (void) dealBack {
[self.navigationController popViewControllerAnimated:YES];
}
效果展示:
二、iOS控件中的AttributeString 属性
/**
NSFontAttributeName 设置字体属性,默认值:字体:Helvetica(Neue) 字号:12
NSForegroundColorAttributeName 设置字体颜色,取值为 UIColor对象,默认值为黑色
NSBackgroundColorAttributeName 设置字体所在区域背景颜色,取值为 UIColor对象,默认值为nil, 透明色
NSLigatureAttributeName 设置连体属性,取值为NSNumber 对象(整数),0 表示没有连体字符,1 表示使用默认的连体字符
NSKernAttributeName 设定字符间距,取值为 NSNumber 对象(整数),正值间距加宽,负值间距变窄
NSStrikethroughStyleAttributeName 设置删除线,取值为 NSNumber 对象(整数)
NSStrikethroughColorAttributeName 设置删除线颜色,取值为 UIColor 对象,默认值为黑色
NSUnderlineStyleAttributeName 设置下划线,取值为 NSNumber 对象(整数),枚举常量 NSUnderlineStyle中的值,与删除线类似
NSUnderlineColorAttributeName 设置下划线颜色,取值为 UIColor 对象,默认值为黑色
NSStrokeWidthAttributeName 设置笔画宽度,取值为 NSNumber 对象(整数),负值填充效果,正值中空效果
NSStrokeColorAttributeName 填充部分颜色,不是字体颜色,取值为 UIColor 对象
NSShadowAttributeName 设置阴影属性,取值为 NSShadow 对象
NSTextEffectAttributeName 设置文本特殊效果,取值为 NSString 对象,目前只有图版印刷效果可用
NSBaselineOffsetAttributeName 设置基线偏移值,取值为 NSNumber (float),正值上偏,负值下偏
NSObliquenessAttributeName 设置字形倾斜度,取值为 NSNumber (float),正值右倾,负值左倾
NSExpansionAttributeName 设置文本横向拉伸属性,取值为 NSNumber (float),正值横向拉伸文本,负值横向压缩文本
NSWritingDirectionAttributeName 设置文字书写方向,从左向右书写或者从右向左书写
NSVerticalGlyphFormAttributeName 设置文字排版方向,取值为 NSNumber 对象(整数),0 表示横排文本,1 表示竖排文本
NSLinkAttributeName 设置链接属性,点击后调用浏览器打开指定URL地址
NSAttachmentAttributeName 设置文本附件,取值为NSTextAttachment对象,常用于文字图片混排
NSParagraphStyleAttributeName 设置文本段落排版格式,取值为 NSParagraphStyle 对象
*/