label是大家在开发过程中使用频率很高的一个用来显示文本信息的控件,但是她所有的属性你都了解吗,下面让我们来

重新认识一下label!

1、创建

CGRect rect = CGRectMake(, , , );
UILabel *label = [[UILabel alloc] initWithFrame:rect];

2、text //设置和读取文本内容,默认为nil

label.text = @”文本信息”; //设置内容
NSLog(@”%@”, label.text); //读取内容

3、textColor //设置文字颜色,默认为黑色

lable.textColor = [UIColor redColor];

4、font //设置字体大小,默认17

label.font = [UIFont systemFontOfSize:]; //⼀一般方法
label.font = [UIFont boldSystemFontOfSize:]; //加粗方法
label.font = [UIFont fontWithName:@"Arial" size:]; //指定

5、textAlignment //设置标签文本对齐方式

label.textAlignment = NSTextAlignmentCenter; //还有
NSTextAlignmentLeft、 NSTextAlignmentRight.

6、numberOfLines //标签最多显示行数,如果为0则表示多行

label.numberOfLines = ;

7、enabled //只是决定了Label的绘制方式,将它设置
为NO将会使文本变暗,表示它没有激活,这时向它设置颜色值是无效的

label.enable = NO;

8、highlighted //是否高亮显示

label.highlighted = YES;
label.highlightedTextColor = [UIColor orangeColor]; //高亮
显示时的文本颜色

9、ShadowColor //设置阴影颜色

[label setShadowColor:[UIColor blackColor]];

10、ShadowOffset //设置阴影偏移量

[label setShadowOffset:CGSizeMake(-, -)];

11、baselineAdjustment //如果adjustsFontSizeToFitWidth属性设置为YES,这个属性就来控制文本基线的行为。

label.baselineAdjustment = UIBaselineAdjustmentNone;
UIBaselineAdjustmentAlignBaselines = ,默认,文本最上端与中线对齐。
UIBaselineAdjustmentAlignCenters, 文本中线与label中线对齐。
UIBaselineAdjustmentNone, 文本最低端与label中线对齐。

12、Autoshrink //是否自动收缩

Fixed Font Size 默认,如果Label宽度小于文字长度时时,文字大小不自动缩放
minimumScaleFactor 设置最小收缩比例,如果Label宽度小于文字长度时,文字
进行收缩,收缩超过比例后,停止收缩。
minimumFontSize 设置最小收缩字号,如果Label宽度小于文字长度时,文字字号
减小,低于设定字号后,不再减小。//6.0以后不再使用了。
label.minimumScaleFactor = 0.5;

13、adjustsLetterSpacingToFitWidth //改变字母之间的间距来适应Label大小

myLabel.adjustsLetterSpacingToFitWidth = NO;

14、 lineBreakMode //设置文字过长时的显示格式

label.lineBreakMode = NSLineBreakByCharWrapping;以字符为显示单位显
示,后面部分省略不显示。
label.lineBreakMode = NSLineBreakByClipping;剪切与文本宽度相同的内
容长度,后半部分被删除。
label.lineBreakMode = NSLineBreakByTruncatingHead;前面部分文字
以……方式省略,显示尾部文字内容。
label.lineBreakMode = NSLineBreakByTruncatingMiddle;中间的内容
以……方式省略,显示头尾的文字内容。
label.lineBreakMode = NSLineBreakByTruncatingTail;结尾部分的内容
以……方式省略,显示头的文字内容。
label.lineBreakMode = NSLineBreakByWordWrapping;以单词为显示单位显
示,后面部分省略不显示。

15、 adjustsFontSizeToFitWidth //设置字体大小适应label宽度

label.adjustsFontSizeToFitWidth = YES;

16、attributedText:设置标签属性文本。

NSString *text = @"first";
NSMutableAttributedString *textLabelStr =[[NSMutableAttributedString alloc]initWithString:text];
[textLabelStr setAttributes:@{NSForegroundColorAttributeName :[UIColor lightGrayColor], NSFontAttributeName :[UIFont systemFontOfSize:]} range:NSMakeRange(,)];
label.attributedText = textLabelStr;

17、竖排文字显示每个文字加一个换行符,这是最方便和简单的实现方式

label.text = @"请\n竖\n直\n方\n向\n排\n列";
label.numberOfLines = [label.text length];

18、计算UIlabel 随字体多行后的高度

CGRect bounds = CGRectMake(, , , );
heightLabel = [myLabel textRectForBounds:bounds
limitedToNumberOfLines:]; //计算20行后的Label的Frame
NSLog(@"%f",heightLabel.size.height);

19、UILabel根据字数多少自动实现适应高度(ios 6 之前使用sizeWithFont的方法)

UILabel *msgLabel = [[UILabel alloc]
initWithFrame:CGRectMake(, , , )];
msgLabel.backgroundColor = [UIColor lightTextColor];
[msgLabel setNumberOfLines:];
msgLabel.lineBreakMode = UILineBreakModeWordWrap;
msgLabel.font = [UIFont fontWithName:@"Arial" size:];
CGSize size = CGSizeMake(, );
msgLabel.text = @"获取到的deviceToken,我们可以通过webservice服务提
交给.net应用程序,这里我简单处理,直接打印出来,拷贝到.net应用环境中使
用。";
CGSize msgSie = [msgLabel.text sizeWithFont:fonts
constrainedToSize:size];
[msgLabel setFrame:CGRectMake(, , , msgSie.height)];

ios 6 之后使用的方法(boundingRectWithSize)实现自适应

    CGFloat contentW = MainScreen_width - ;

    UIFont *fnt = [UIFont fontWithName:@"HelveticaNeue" size:18.0f];

    NSDictionary *attributes = @{NSFontAttributeName:fnt};

    //ios 6 之后使用下面这个方法实现label的自适应
CGRect labSize = ["字符串" boundingRectWithSize:CGSizeMake(contentW, ) options:NSStringDrawingUsesLineFragmentOrigin attributes:[NSDictionary dictionaryWithObjectsAndKeys:attributes, nil] context:nil];

20、渐变字体Label

 UIColor *titleColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"1.jpg"]];
NSString *title = @"Setting";
UILabel *titleLabel = [[UILabel alloc]initWithFrame:CGRectMake(, , MainScreen_width - , )];
titleLabel.textColor = titleColor;
titleLabel.text = title;
titleLabel.font = [UIFont boldSystemFontOfSize:];
titleLabel.backgroundColor = [UIColor clearColor];
[self.view addSubview:titleLabel];

21、Label添加边框

titleLabel.layer.borderColor = [[UIColor grayColor] CGColor];
titleLabel.layer.borderWidth = ;

ios - UILabel全属性的更多相关文章

  1. ios 6以后,UILabel全属性

    一.初始化 1 UILabel *myLabel = [[UILabel alloc] initWithFrame:CGRectMake(40, 40, 120, 44)]; 2       3 [s ...

  2. iOS非常全的第三方库

    iOS ● 非常全的三方库.插件.大牛博客等等   github排名:https://github.com/trending, github搜索:https://github.com/search. ...

  3. iOS超全开源框架、项目和学习资料汇总--数据库、缓存处理、图像浏览、摄像照相视频音频篇

    iOS超全开源框架.项目和学习资料汇总--数据库.缓存处理.图像浏览.摄像照相视频音频篇 感谢:Ming_en_long 的分享 大神超赞的集合,http://www.jianshu.com/p/f3 ...

  4. iOS UILabel 文字 置顶/置底 实现

    iOS UILabel控件默认文字位置是居中的,如图所示: 但是我们经常碰到这样的需求,希望文字向上置顶,或者向下置底,但是很遗憾,iOS API中并没有提供相应的属性和方法,需要我们手动设置. 利用 ...

  5. iOS:常用属性、方法

    前言:一段时间没接触,很容易就忘记以前的知识.专写一篇,供几个月没接触,拿起却忘记了. 0.宏定义.系统相关 0-1).宏定义.规范 变量: //全局变量通常用小写g来提示 int gNumb=0; ...

  6. iOS开发-automaticallyAdjustsScrollViewInsets属性

    iOS开发-automaticallyAdjustsScrollViewInsets属性 Available in iOS 7.0 and later. 简单点说就是automaticallyAdju ...

  7. HTML video 视频标签全属性详解

    HTML 5 video 视频标签全属性详解   现在如果要在页面中使用video标签,需要考虑三种情况,支持Ogg Theora或者VP8(如果这玩意儿没出事的话)的(Opera.Mozilla.C ...

  8. 【转】iOS超全开源框架、项目和学习资料汇总

    iOS超全开源框架.项目和学习资料汇总(1)UI篇iOS超全开源框架.项目和学习资料汇总(2)动画篇iOS超全开源框架.项目和学习资料汇总(3)网络和Model篇iOS超全开源框架.项目和学习资料汇总 ...

  9. IOS UITableView NSIndexPath属性讲解

    IOS UITableView NSIndexPath属性讲解   查看UITableView的帮助文档我们会注意到UITableView有两个Delegate分别为:dataSource和deleg ...

随机推荐

  1. Windows10 64位 Python2.7 Matplotlib安装

    为了安装Matplotlib 百度了一大堆,也下载了一大堆安装包,结果还是报错ImportError: DLL load failed: %1 不是有效的 Win32 应用程序. 后来直接从官网看怎么 ...

  2. java中Logger.getLogger(Test.class)

    java中Logger.getLogger(Test.class) log4的使用方法: log4是具有日志记录功能,主要通过一个配置文件来对程序进行监测有两种配置方式:一种程序配置,一种文件配置有三 ...

  3. CPAN镜像使用帮助

    https://lug.ustc.edu.cn/wiki/mirrors/help/cpan ************************************************** 使用 ...

  4. Jar包版本查看方法

    原文:  https://blog.csdn.net/u011287511/article/details/66973559 打开Java的JAR文件我们经常可以看到文件中包含着一个META-INF目 ...

  5. QQ自动发送+@好友功能+tencent://功能

    1.取出全部标题 D2007版本 procedure TForm1.Button1Click(Sender: TObject);var  hCurrentWindow:HWnd;  szText: a ...

  6. sql添加自动增长列

    alter table a add num int identity

  7. python 调用函数 / 类型转换 / 切片/ 迭代

    调用函数 / 类型转换 /  切片/ 迭代 1. 调用函数:abs(),max(),min() 2. 数据类型转换:int(),float(),str(),tool(),a=abs, 3. 定义函数, ...

  8. jQuery或者js保存文件到本地

    一: // 浏览文件夹(指定文件路径) function BrowseFolder() { try { var Message = "Please select the folder pat ...

  9. ApplicationEventMulticaster not initialized - call 'refresh' before

    https://stackoverflow.com/questions/45318618/applicationeventmulticaster-not-initialized-call-refres ...

  10. 03 Files

    本章提要-----------------------------------------------组成 oracle 的 8 种主要文件(包括 instance 和 database)instan ...