收集iOS -- UILabel 的常用属性

作者: TenMios | 来源:发表于2016-12-23 16:07 被阅读148次

/创建UILabel

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(20, 40, 280, 80)];

UILabel *label = [[UILabel alloc] initWithFrame:self.view.bounds];

Alpha =  0 - 1 ; 透明度

//设置显示文本

label.text = @“我是标签”;

//设置背景色

label.backgroundColor = [UIColor grayColor];

//设置tag

label.tag = 91;

//设置标签文本字体和字体大小

label.font = [UIFont systemFontOfSize:14]; // boldSystemFormOfSize  加粗  italicSystemFontOfSize 斜体

//文本frame

CGRect rect =label.frame;

label.frame =rect;

//文本颜色

label.textColor = [UIColor blueColor];

//文本最多行数,为0时没有最大行数限制

label.numberOfLines = 2;

//最小字体,行数为1时有效,默认为0.0

label.minimumFontSize = 10.0;

//文本高亮

label.highlighted = YES;

//文本是否可变

label.enabled = YES;

//label背景色

label.backgroundColor = [UIColor whiteColor];

//文本阴影颜色

label.shadowColor = [UIColor grayColor];

//阴影大小

label.shadowOffset = CGSizeMake(1.0, 1.0);

//是否能与用户交互

label.userInteractionEnabled = YES;

//设置label的旋转角度

label.transform = CGAffineTransformMakeRotation(0.2);

//文本文字自适应大小

//设置文本对齐方式

label.textAlignment = UITextAlignmentCenter;

//文本对齐方式有以下三种

//typedef enum {

UITextAlignmentLeft = 0,左对齐

UITextAlignmentCenter,居中对齐

UITextAlignmentRight, 右对齐

//} UITextAlignment;

label.adjustsFontSizeToFitWidth = YES;

//将label 添加到view 中 这样才能够显示

[self.view addSubview:label];

if ([subclassModel.special isEqualToString:strNULL]) {

self.priceLabel.text =[NSString stringWithFormat:@"$%@",str];

}else{

NSString *str2 =[subclassModel.special substringToIndex:[subclassModel.special length]-2];

self.specialLabel.text =[NSString stringWithFormat:@"$%@",str2];

self.priceLabel.text =[NSString stringWithFormat:@"$%@",str];

//富文本

NSDictionary *attribtDic = @{NSStrikethroughStyleAttributeName:[NSNumber numberWithInteger:NSUnderlineStyleSingle]};

NSMutableAttributedString *attributStr =[[NSMutableAttributedString alloc]initWithString:self.priceLabel.text attributes:attribtDic];

self.priceLabel.attributedText =attributStr;

}

富文本  下划线 和  中划线

UILabel *label1=[[UILabel alloc]initWithFrame:CGRectMake(0, 0, 100, 100)];

NSDictionary *attribtDic = @{NSUnderlineStyleAttributeName: [NSNumber numberWithInteger:NSUnderlineStyleSingle]};

NSMutableAttributedString *attribtStr = [[NSMutableAttributedString alloc]initWithString:@"下划线" attributes:attribtDic];

label1.attributedText = attribtStr;

[self.view addSubview:label1];

UILabel *label2=[[UILabel alloc]initWithFrame:CGRectMake(0, 100, 100, 100)];

NSDictionary *attribtDic2 = @{NSStrikethroughStyleAttributeName: [NSNumber numberWithInteger:NSUnderlineStyleSingle]};

NSMutableAttributedString *attribtStr2 = [[NSMutableAttributedString alloc]initWithString:@"中划线" attributes:attribtDic2];

label2.attributedText = attribtStr2;

[self.view addSubview:label2];

//设置文字过长时的显示格式  //截去中间

label.lineBreakMode = UILineBreakModeTailTruncation;

//截取方式有以下6种

//typedef enum {

//    UILineBreakModeWordWrap = 0,    以空格为边界,保留整个单词

//    UILineBreakModeCharacterWrap,   保留整个字符

//    UILineBreakModeClip,            到边界为止

//    UILineBreakModeHeadTruncation,  截去头部

//    UILineBreakModeTailTruncation,  截去尾部

//    UILineBreakModeMiddleTruncation, 截去中间

//} UILineBreakMode;

//当adjustsFontSizeToFitWidth=YES时候,如果文本font要缩小时

//baselineAdjustment这个值控制文本的基线位置,只有文本行数为1是有效

label.baselineAdjustment = UIBaselineAdjustmentAlignCenters;

//有三种方式

//typedef enum {

//    UIBaselineAdjustmentAlignBaselines = 0, 默认值文本最上端于label中线对齐

//    UIBaselineAdjustmentAlignCenters,//文本中线于label中线对齐

//    UIBaselineAdjustmentNone,//文本最低端与label中线对齐

//} UIBaselineAdjustment;

拖拽控件  创建输出口    输出口属性

@property (weak,nonatomic)IBOutlet UILabel *label ;

编程中,要想访问视图,我们需要将这些视图定义为属性,OC版本中也可以将视图定义为 成员变量,不需要使用Outlet 关键字修饰

成员变量:

@property (strong ,nonatomic)UILabel *label;

区别:weak 和 strong

xib 和 故事板 中创建的label  用weak  ;  对象所有权在故事板上或XIB。

因为对象所有权在视图控制器中: 所以第二个label 用strong


Plain  普通样式

Attributed  带有属性的。    富文本相关      里面可以有 文字 图标 图片

Alpha =  0 - 1 ; 透明度

Line Breaks  默认多出的文字 省略的位置  左 中 右

相关文章

网友评论

    本文标题:收集iOS -- UILabel 的常用属性

    本文链接:https://www.haomeiwen.com/subject/xlvkvttx.html