iOS筆記之UILabel(富文字)

weixin_34007291發表於2016-10-14

1、常見的屬性及說明

NSFontAttributeName  //字型
NSParagraphStyleAttributeName  //段落格式 
NSForegroundColorAttributeName  //字型顏色
NSBackgroundColorAttributeName  //背景顏色
NSStrikethroughStyleAttributeName  //刪除線格式
NSUnderlineStyleAttributeName  //下劃線格式
NSStrokeColorAttributeName  //刪除線顏色
NSStrokeWidthAttributeName  //刪除線寬度
NSShadowAttributeName  //陰影

2、常見方法:

//為某一範圍內文字設定多個屬性
- (void)setAttributes:(NSDictionary *)attrs range:(NSRange)range;
//為某一範圍內文字新增某個屬性
- (void)addAttribute:(NSString *)name value:(id)value range:(NSRange)range;
//為某一範圍內文字新增多個屬性
- (void)addAttributes:(NSDictionary *)attrs range:(NSRange)range;
//移除某範圍內的某個屬性
- (void)removeAttribute:(NSString *)name range:(NSRange)range;

更多方法和屬性說明詳見蘋果官方說明文件

3、使用示例:

NSString *str = @"犯我中華者,雖遠必誅!";
NSMutableAttributedString *attrStr = [[NSMutableAttributedString alloc] 
      initWithString:str];
/*說明:NSAttributedString也能設定,與NSMutableAttributedString的關係類似於NSArray和NSMutableArray*/

(1)、新增字型和設定字型的範圍

[attrStr addAttribute:NSFontAttributeName value:
  [UIFont systemFontOfSize:20.0f] range:NSMakeRange(0, 3)];  //字型大小為20.0f
[attrStr addAttribute:NSFontAttributeName value:
  [UIFont boldSystemFontOfSize:20.0f] range:NSMakeRange(0, 3)];  //字型大小為20.0f並且加粗

(2)、新增文字顏色

[attrStr addAttribute:NSForegroundColorAttributeName value:
  [UIColor redColor] range:NSMakeRange(0, 7)];

(3)、新增下劃線

[attrStr addAttribute:NSUnderlineStyleAttributeName value:
  [NSNumber numberWithInteger:NSUnderlineStyleSingle] range:NSMakeRange(0, 7)];

(4)、設定段落樣式

NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
//行間距
paragraph.lineSpacing = 10;
//段落間距
paragraph.paragraphSpacing = 20;
//對齊方式
paragraph.alignment = NSTextAlignmentLeft;
//指定段落開始的縮排畫素
paragraph.firstLineHeadIndent = 30;
//調整全部文字的縮排畫素paragraph.headIndent = 10;

(5)、新增段落設定

[attrStr addAttribute:NSParagraphStyleAttributeName value:paragraph 
  range:NSMakeRange(0, [str length])];

(6)、新增連結
label新增連結注意:label連結是可以顯示出來,但是不能點選,而textView是可以點選的,因為裡面有shouldInteractWithURL代理方法回撥。

NSString *urlStr = @"www.baidu.com";
NSURL *url = [NSURL URLWithString:urlStr];
[attrStr addAttribute:NSLinkAttributeName value:url range:NSMakeRange(2, 7)];

(7)、一次性搞定:設字號為20,字型顏色為紅色

NSDictionary *attDict = [NSDictionary dictionaryWithObjectsAndKeys:
  [UIFont systemFontOfSize:20.0],NSFontAttributeName,
  [UIColor redColor],NSForegroundColorAttributeName,
  nil];
NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc] 
  initWithString:@"犯我華夏者,雖遠必誅!" attributes:attDict];

4、label其他一些常用屬性:

//建立label
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(60, 100, 200, 0)];
//設定背景顏色
label.backgroundColor = [UIColor lightGrayColor];
//自動換行
label.numberOfLines = 0;
//設定label的富文字
label.attributedText = attrStr;
//label高度自適應
[label sizeToFit];

//列印高度
CGFloat height = label.frame.size.height;
NSLog(@"height = %f",height);

**
PS:設定sizeToFit之後是可以取出label的高度的,這樣做label高度自適應。但是如果你用第三方框架(如:Masonry)給其加約束,因為約束優先順序最高,所以這句會失效
**

5、設定行間距

        NSString *textStr = @":設定sizeToFit之後是可以取出label的高度的,這樣做label高度自適應。但是如果你用第三方框架(如:Masonry)給其加約束,因為約束優先順序最高,所以這句會失效";  
        UIFont *textFont = [UIFont systemFontOfSize:14];  
        CGSize textSize = [textStr sizeWithFont:textFont  
                              constrainedToSize:CGSizeMake(bounds.size.width - 40, QZONE_SCREEN_HEIGHT)];;  
        UILabel *openMicPrivilegeTipsLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 20, textSize.width, textSize.height)];  
        openMicPrivilegeTipsLabel.textColor = DefaultDescriptionText2ColorInDefaultTheme;  
        openMicPrivilegeTipsLabel.text = textStr;  
        openMicPrivilegeTipsLabel.backgroundColor = [UIColor clearColor];  
        openMicPrivilegeTipsLabel.textAlignment = UITextAlignmentLeft;  
        openMicPrivilegeTipsLabel.font = [UIFont systemFontOfSize:14];  
        openMicPrivilegeTipsLabel.numberOfLines = 0;  
          
        // 調整行間距  
        NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:textStr];  
        NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];  
        [paragraphStyle setLineSpacing:6];  
        [attributedString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [textStr length])];  
        openMicPrivilegeTipsLabel.attributedText = attributedString;  
          
        [_tipsBG addSubview:openMicPrivilegeTipsLabel];  
        [openMicPrivilegeTipsLabel sizeToFit];  

相關文章