xujingjing 學習iOS開發歷程
阿新 • • 發佈:2019-01-26
Label用法總結
(1)初始化
UILabel *aLabel=[[UILabel alloc]initWithFrame:CGRectMake(50, 50, 100, 50)];
(2)文字內容
//位置預設是靠左的
[aLabel setText:@"hello"];
//設定字型顏色
aLabel.textColor=[UIColor blueColor];
aLabel.textColor=[UIColor redColor];
//設定字型大小
aLabel.font=[UIFont systemFontOfSize:12.4];
//修改字型的字型和大小
aLabel.font=[UIFont fontWithName:@"Arial Rounded MT Bold" size:36.0];
//設定背景顏色
aLabel.backgroundColor=[UIColor redColor];
//清空背景顏色
aLabel.backgroundColor=[UIColor clearColor];
//設定對齊方式
aLabel.textAlignment = UITextAlignmentLeft;//文字靠左
aLabel.textAlignment = UITextAlignmentCenter;//文字居中
aLabel.textAlignment = UITextAlignmentRight;//文字靠右
//設定字型大小是否適應label寬度
aLabel.adjustsFontSizeToFitWidth=YES;//是YES時,這個屬性就來控制文字基線的行為
在定義裡面允許有以下格式顯示:
typedef enum {
UIBaselineAdjustmentAlignBaselines,
//預設值文字最上端與label中間線對齊
UIBaselineAdjustmentAlignCenters,
//text中間與label中間線對齊
UIBaselineAdjustmentNone, //text最低端與label中間線對齊
} UIBaselineAdjustment;
//設定是否是高亮
aLabel.highlighted=YES;
//高亮顏色
aLabel.highlightedTextColor=[UIColor redColor];
//設定陰影顏色
aLabel.shadowColor=[UIColor blueColor];
//陰影偏移量
aLabel.shadowOffset=CGSizeMake(0.5, 0.5);
//是否能和使用者互動 aLabel.userInteractionEnabled=YES; //文字是否可變,預設值是YES aLabel.enabled=YES; //設定文字過長時的顯示格式 aLabel.lineBreakMode = UILineBreakModeMiddleTruncation;//截去中間 aLabel.lineBreakMode =UILineBreakModeTailTruncation,//截去尾部 aLabel.lineBreakMode =UILineBreakModeHeadTruncation;//截去頭部 aLabel.lineBreakMode=UILineBreakModeCharacterWrap;//保留整個字元 aLabel.lineBreakMode=UILineBreakModeClip;//截去多餘部分 在定義裡面允許有以下格式顯示: typedef enum { UILineBreakModeWordWrap = 0, // UILineBreakModeCharacterWrap, UILineBreakModeClip,//截去多餘部分 UILineBreakModeHeadTruncation,//截去頭部 UILineBreakModeTailTruncation,//截去尾部 UILineBreakModeMiddleTruncation,//截去中間 } UILineBreakMode;