以下内容转自简书作者 J_Wheat
// 1、创建
CGRectrect =CGRectMake(100,100,100,100);
UILabel* label = [[UILabelalloc]initWithFrame:rect];
// 2、text设置和读取文本内容,默认为nil
label.text=@"文本信息";//设置内容
NSLog(@"%@",label.text);//读取内容
// 3、textColor设置文字颜色,默认为黑色
label.textColor= [UIColorredColor];
// 4、font设置字体大小,默认为17
label.font= [UIFontsystemFontOfSize:20];//一般方法
label.font= [UIFontboldSystemFontOfSize:20];//加粗方法
label.font= [UIFontfontWithName:@""size:16];//指定字体的方法
// 5、textAlignment设置标签文本对齐方式
label.textAlignment=NSTextAlignmentCenter;
/**其他的对齐方式
NSTextAlignmentLeft= 0,// Visually left aligned
NSTextAlignmentCenter= 1,// Visually centered
NSTextAlignmentRight= 2,// Visually right aligned
NSTextAlignmentRight= 1,// Visually right aligned
NSTextAlignmentCenter= 2,// Visually centered
NSTextAlignmentJustified = 3,// Fully-justified. The last line in a paragraph is natural-aligned.
NSTextAlignmentNatural= 4,// Indicates the default alignment for script
*/
// 6、numberOfLines标签最多显示行数,如果为0则表示多行
label.numberOfLines=2;
// 7、enabled只是决定了Label的绘制方式,将它设置为NO时文本变暗,表示没有激活,这是向她设置颜色值都是无效的。
label.enabled=NO;
// 8、highlighted是否高亮显示
label.highlighted=YES;
label.highlightedTextColor= [UIColororangeColor];//高亮显示时候的文本颜色
// 9、ShadowColor设置阴影颜色
[labelsetShadowColor:[UIColorblackColor]];
// 10、ShadowOffset设置阴影偏移量
[labelsetShadowOffset:CGSizeMake(-1, -1)];
// 11、baselineAdjustment如果==YES,控制文本基线的行为
label.baselineAdjustment=UIBaselineAdjustmentNone;
/*
UIBaselineAdjustmentAlignBaselines = 0, // default. used when shrinking text to position based on the original baseline默认,文本最上端与中线对齐。
UIBaselineAdjustmentAlignCenters, //文本中线与label中线对齐。
UIBaselineAdjustmentNone, //文本最低端与label中线对齐。
*/
// 12、Autoshrink是否自动收缩
/*
Fixed Font Size默认,如果label宽度小于文字长度时,文字大小不自动缩放
minimumScaleFactor设置最小收缩比例,如果Label宽度小于文字长度时,文字进行收缩,收缩超过比例后,停止收缩。
minimumFontSize设置最小收缩字号,如果label宽度小于文字长度时,文字字号减小,低于设定字号以后,不再减小。// 6.0以后不再使用了。
*/
label.minimumScaleFactor=0.5;
// 13、adjustsLetterSpacingToFitWidth改变字母之间的间距来适应Label大小
label.adjustsLetterSpacingToFitWidth=YES;// NS_DEPRECATED_IOS(6_0,7_0) __TVOS_PROHIBITED
// Non-functional.Hand tune by using NSKernAttributeName to affect tracking, or consider using the allowsDefaultTighteningForTruncation property.
// 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 =@"doubiqiu";
NSMutableAttributedString* textLabelStr = [[NSMutableAttributedStringalloc]initWithString:text];
[textLabelStrsetAttributes:@{NSForegroundColorAttributeName:[UIColorcyanColor],NSFontAttributeName:[UIFontsystemFontOfSize:17]}range:NSMakeRange(2,5)];
label.attributedText= textLabelStr;
// 17、竖排文字显示每个文字加一个换行符,这是最方便和简单的实现方式。
label.text=@"这\n个\n是\n竖\n排\n方\n向\n的\n显\n示";
label.numberOfLines= [label.textlength];
// 18、计算UILabel随字体多行后的高度
CGRectbounds =CGRectMake(0,0,200,300);
CGRectheightLabel = [labeltextRectForBounds:boundslimitedToNumberOfLines:3];//计算20行之后的Label的Frame
NSLog(@"%f",heightLabel.size.height);
// 19、UILabel根据字数多少自动实现适应高度
UILabel*msgLabel = [[UILabelalloc]
initWithFrame:CGRectMake(15,45,0,0)];
msgLabel.backgroundColor= [UIColorlightTextColor];
[msgLabelsetNumberOfLines:0];
msgLabel.lineBreakMode=UILineBreakModeWordWrap;
msgLabel.font= [UIFontfontWithName:@"Arial"size:12];
CGSizesize =CGSizeMake(290,1000);
msgLabel.text=@"获取到的deviceToken,我们可以通过webservice服务提交给.net应用程序,这里我简单处理,直接打印出来,拷贝到.net应用环境中使用。";
CGSizemsgSize = [msgLabel.textsizeWithFont:msgLabel.fontconstrainedToSize:size];
[msgLabelsetFrame:CGRectMake(15,150,290, msgSize.height)];
// 20、渐变字体Label
UIColor* titleColor = [UIColorcolorWithPatternImage:[UIImageimageNamed:@"btn.png"]];
NSString* title =@"Setting";
UILabel* titleLabel = [[UILabelalloc]initWithFrame:CGRectMake(100,200,80,44)];
titleLabel.textColor= titleColor;
titleLabel.text= title;
titleLabel.font= [UIFontboldSystemFontOfSize:20];
titleLabel.backgroundColor= [UIColorclearColor];
[self.viewaddSubview:titleLabel];
// 21、Label添加边框
titleLabel.layer.borderColor= [UIColorgrayColor].CGColor;
titleLabel.layer.borderWidth=2;
// 22、设置圆角
titleLabel.layer.cornerRadius=10;
titleLabel.backgroundColor= [UIColorcyanColor];
// 23、设置背景色圆角
titleLabel.clipsToBounds=YES;
[self.viewaddSubview:label];
[self.viewaddSubview:msgLabel];
// 24、设置Label 的倾斜度
label.transform = CGAffineTransformMakeRotation(-0.2);