UILabel詳解

 

                    UILabel詳解ios

//1.建立UIlabelapp

UILabel *label1 = [[UILabelalloc] initWithFrame:CGRectMake(20, 40, 280, 80)];函數

//2.設置背景色
label1.backgroundColor = [UIColor grayColor];字體

//3.設置tagspa

label1.tag = 91;ip

//4.設置標籤文本
label1.text = @"Hello world!"; ci

//5.設置標籤文本字體和字體大小
label1.font = [UIFont fontWithName:@"Arial" size:30]; 字符串

//6.設置文本對其方式it

label1.textAlignment = UITextAlignmentCenter; io

//文本對齊方式有如下三種
//typedef enum {
// UITextAlignmentLeft = 0,左對齊

// UITextAlignmentCenter,居中對齊 

// UITextAlignmentRight, 右對齊 

//} UITextAlignment;

//7.文本顏色
label1.textColor = [UIColor blueColor]; 

//8.超出label邊界文字的截取方式 

label1.lineBreakMode =UILineBreakModeTailTruncation; 

//截取方式有如下6
//typedef enum {
// UILineBreakModeWordWrap = 0,以空格爲邊界,保留整個單詞

// UILineBreakModeCharacterWrap, 保留整個字符

// UILineBreakModeClip,            到邊界爲止
// UILineBreakModeHeadTruncation,省略開始,… 代替

// UILineBreakModeTailTruncation,省略結尾,......代替

// UILineBreakModeMiddleTruncation,省略中間,......,多行時做用於最後⼀一行

//} UILineBreakMode;

//9.文本文字自適應大小
label1.adjustsFontSizeToFitWidth = YES;

 //adjustsFontSizeToFitWidth=YES時候,若是文本font要縮小時

 //baselineAdjustment這個值控制文本的基線位置,只有文本行數爲1是有效label1.baselineAdjustment =UIBaselineAdjustmentAlignCenters;

 //有三種方式

//typedef enum {

// UIBaselineAdjustmentAlignBaselines = 0, 默認值 文本最上端於label中線對齊

// UIBaselineAdjustmentAlignCenters,//文本中線於 label中線對齊

// UIBaselineAdjustmentNone,//文本最低端與label中線對齊

//} UIBaselineAdjustment;

//10.文本最多行數,0時沒有最大行數限制 

label1.numberOfLines = 2; 

//11.最小字體,行數爲1時有效,默認爲0.0 

label1.minimumFontSize = 10.0; 

//12.文本高亮

label1.highlighted = YES;
//13.文本是否可變
label1.enabled = YES;
//14.去掉label背景色
label1.backgroundColor = [UIColor clearColor];

//15.文本陰影顏色
label1.shadowColor = [UIColor grayColor]; 

//16.陰影大小
label1.shadowOffset = CGSizeMake(1.0, 1.0);

//17.是否能與用戶交互label1.userInteractionEnabled = YES;

//添加視圖

[self.view addSubview:label1]; 

[label1 release];

 

UILabel的使用 

摘要:UILabel的基本屬性,簡單說明,ios6新屬性

 myLabel.minimumScaleFactor = 10.0;//默認值爲0,爲當前字體大小

1、初始化

UILabel *myLabel = [[UILabel alloc] initWithFrame:CGRectMake(40,4012044)];
[self.view addSubview:myLabel];

2、設置文字 

1、設置默認文本

 NSString *text =@"標籤文本";

 myLabel.text = text;

2、設置標籤文本(此屬性是iOS6.0以後纔出現,如若不是必要,不建議使用此屬性)

NSString *text =@"其實沒什麼";

NSMutableAttributedString *attributeString =[[NSMutableAttributedString alloc] initWithString:text];
[attributeStringsetAttributes:@{NSForegroundColorAttributeName : [UIColor redColor], NSFontAttributeName : [UIFont systemFontOfSize:17]} range:NSMakeRange(21)];
myLabel.attributedText = attributeString;

 

關鍵字標紅的效果

 NSString *keyword =@"開源";

 NSString *result =@"開源中國社區";

// 設置標籤文字

NSMutableAttributedString *attrituteString = [[NSMutableAttributedString alloc] initWithString:result];

// 獲取標紅的位置和長度

 NSRange range = [result rangeOfString:keyword];

// 設置標籤文字的屬性

[attrituteString setAttributes:@{NSForegroundColorAttributeName : [UIColor redColor], NSFontAttributeName : [UIFont systemFontOfSize:17]} range:range];

// 顯示在Label

 label.attributedText = attrituteString;

3設置字體,若是是使用2中的文本,那在設置 AttributeString的屬性時已經設置過Font了和textColor,直接使用1設置文本時設置文本時,設置字體方法

myLabel.font = [UIFont systemFontOfSize:13];

4設置顏色

myLabel.textColor = [UIColor blueColor];

5設置對齊方式

  myLabel.textAlignment = NSTextAlignmentCenter;//居中

  NSTextAlignmentLeft //左對齊
  NSTextAlignmentCenter //居中
  NSTextAlignmentRight //右對齊

  NSTextAlignmentJustified//最後⼀一行天然對

  NSTextAlignmentNatural//默認對齊腳本

NSTextAlignmentJustified NSTextAlignmentNatural的時候會報錯,程序崩潰,暫時不知道何時可使用,但願知道的指教⼀一下,感激涕零。

6文字剪裁方式

 NSLineBreakByWordWrapping =0,//以空格爲邊界,保留單詞

//保留整個字符 //簡單剪裁,到邊界爲止 //按照"......文字"顯示 //按照"文字......文字"顯示 //按照"文字......"顯示

 NSLineBreakByCharWrapping,
 NSLineBreakByClipping,
 NSLineBreakByTruncatingHead,
 NSLineBreakByTruncatingTail,
 NSLineBreakByTruncatingMiddle


 myLabel.lineBreakMode = NSLineBreakByTruncatingHead;

7設置Label enabled屬性若是設置爲No,則文字顏色會變暗,代表其是不可用的,默認值爲YES

 myLabel.enabled =NO;

 

2、匹配Label上的文字

1、是否根據文本寬度改變字體大小

  myLabel.adjustsFontSizeToFitWidth =YES;
 
//假設文字內容爲@"曾在月光之下望煙花,曾共看夕陽漸降下",Label

度爲200,則⼀一行顯示不下,若設置此屬性爲YES,則會下降字體大小,以顯示所有內容。

先後對比:

2、改變字母之間的間距來適應label大小
 
//當這個屬性是YES,標籤可能改變標籤文本的字母間距,以使該文本更

適合標籤的邊界內。此屬性的字符串,而無論當前行的行的裁剪模式。該屬性的默認值是NO

 myLabel.adjustsLetterSpacingToFitWidth =NO;

 

//我的使用了⼀一下,沒發現有什麼區別,不知道具體是何時發揮做用。

3、設置對齊基線

 myLabel.adjustsFontSizeToFitWidth =YES;//調整基線位置需將此屬性設置爲YES

 myLabel.baselineAdjustment = UIBaselineAdjustmentAlignBaselines;

此屬性有三個值可選

1 UIBaselineAdjustmentAlignBaselines//文本最上端與Label中線對齊,默認值

2 UIBaselineAdjustmentAlignCenters//文本中線與Label中線對

3 UIBaselineAdjustmentNone//文本最下端與Label中線對齊

4、最小字體大小,當字體小於這個最小值時無效,顯示此屬性值

iOS6.0以前:minimumFontSize iOS6.0以後:minimumScaleFactor

1 myLabel.minimumScaleFactor =10.0;//默認值爲0,爲當前字體大

5、行數

 myLabel.numberOfLines =2;//Label行數 6、高亮

 myLabel.highlighted =YES;//是否高亮

 myLabel.highlightedTextColor = [UIColor redColor];//高亮顏;此屬性在設置按鈕的titleLabel,不管highlightedYES仍是 NO,在按鈕按下時標題都顯示此高亮顏色

7、陰影

  myLabel.shadowColor = [UIColor grayColor];//陰影顏色,默認nil

  myLabel.shadowOffset = CGSizeMake(1,1);//陰影的偏移點3、Label位置

1、計算UIlabel隨字體多行後的高度

 CGRect result,bounds;

 bounds = CGRectMake(0,0,200300);
 heightLabel = [myLabel textRectForBounds:bounds

                    limitedToNumberOfLines:20];//計算20行後的LabelFrame 4 NSLog(@"%f",heightLabel.size.height);

2、繪製text到指定區域

 -­‐ (void)drawTextInRect:(CGRect)rect
 //須要重載此方法,而後由子類調用,重寫時調用super能夠按默認圖形屬性繪製,若本身徹底重寫繪製函數,就不用調用super

相關文章
相關標籤/搜索