//聲明UILabel對象
@property (
nonatomic,
strong) UILabel *label;
// 初始化
self.label = [[UILabel alloc] init];
self.label.backgroundColor = [UIColor clearColor];
//設置frame
self.label.frame = CGRectMake((
self.view.frame.size.width-80)/2.0,80, 80, 100);
//設置文本內容
self.label.text =
@"In the evening one may praise the day
.";
//設置字體大小
self.label.font = [UIFont systemFontOfSize:17.0];
//設置字體顏色
self.label.textColor = [UIColor blueColor];
//設置陰影偏移量
//self.label.shadowOffset = CGSizeMake(1.0, 0.5);
//設置陰影顏色
//self.label.shadowColor = [UIColor purpleColor];
//設置文本對其方式
self.label.textAlignment = NSTextAlignmentCenter;
self.label.lineBreakMode = NSLineBreakByTruncatingMiddle;
//設置行數 默認1 0表明自動換行
//self.label.numberOfLines = 0;
//設置自適應寬度
//self.label.adjustsFontSizeToFitWidth = YES;
//設置可否與用戶交互
self.label.userInteractionEnabled =
YES;
//設置文本是否可變
self.label.enabled =
YES;
//設置文本是否高亮顯示
//self.label.highlighted = YES;
//設置文本高亮顯示顏色
//self.label.highlightedTextColor = [UIColor redColor];
[
self.view addSubview:
self.label];