iOS筆記之UILabel(富文字)
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];
相關文章
- iOS 富文字屬性iOS
- iOS UILabel/UIButton文字設定多個顏色iOSUI
- iOS開發筆記-40: UILabel上面新增uiview無法顯示iOS筆記UIView
- 日常筆記一:擷取富文字編輯器中的文字內容筆記
- IOS筆記之字典iOS筆記
- IOS筆記之字串iOS筆記字串
- iOS 富文字的應用(圖片與文字混編)iOS
- iOS UILabel中文字與邊框間距的自定義iOSUI
- IOS 學習筆記(4) 控制元件 標籤(UILabel)的使用方法iOS筆記控制元件UI
- 日常筆記二:獲取富文字編輯器中圖片筆記
- IOS筆記之陣列iOS筆記陣列
- iOS UILABEL \UIIMAGE複製iOSUI
- IOS筆記之可變字串iOS筆記字串
- iOS筆記之陣列排序iOS筆記陣列排序
- iOS專案開發實戰——UILabel自適應較多的文字iOSUI
- iOS使用UITableView實現的富文字編輯器iOSUIView
- iOS 富文字常用封裝(NSAttributedString淺析)iOS封裝
- iOS使用NSMutableAttributedString實現富文字小結iOS
- iOS_極光推送的UNNotificationServiceExtension實現富文字iOS
- 初探富文字之OT協同例項
- 初探富文字之CRDT協同例項
- ios開發UI篇--UILabeliOSUI
- 【開源我寫的富文字】打造全網最勁富文字系列之技術選型
- 《財富的帝國》筆記筆記
- 初探富文字之OT協同演算法演算法
- 初探富文字之CRDT協同演算法演算法
- UILable富文字UI
- 富文字 XSS
- iOS UILabel顯示html標籤iOSUIHTML
- IOS學習筆記——iOS元件之UIScrollView詳解iOS筆記元件UIView
- CSS 小結筆記之文字溢位處理CSS筆記
- 富文字編輯器之遊戲角色升級ing遊戲
- 初探富文字之搜尋替換演算法演算法
- iOS筆記iOS筆記
- swift——富文字文字的簡單使用Swift
- 富文字編譯器編譯
- TextMeshPro - 富文字標籤
- iOS學習筆記01 textfield 限定輸入的文字長度iOS筆記