本文最后更新于:2021年12月22日 中午
1、常见的属性及说明
1 2 3 4 5 6 7 8 9
| NSFontAttributeName NSParagraphStyleAttributeName NSForegroundColorAttributeName NSBackgroundColorAttributeName NSStrikethroughStyleAttributeName NSUnderlineStyleAttributeName NSStrokeColorAttributeName NSStrokeWidthAttributeName NSShadowAttributeName
|
2、常见方法:
1 2 3 4 5 6 7 8
| - (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、使用示例:
1 2 3
| NSString *str = @"犯我中华者,虽远必诛!"; NSMutableAttributedString *attrStr = [[NSMutableAttributedString alloc] initWithString:str];
|
(1)、添加字体和设置字体的范围
1 2 3
| [attrStr addAttribute:NSFontAttributeName value: [UIFont systemFontOfSize:20.0f] range:NSMakeRange(0, 3)]; [attrStr addAttribute:NSFontAttributeName value: [UIFont boldSystemFontOfSize:20.0f] range:NSMakeRange(0, 3)];
|
(2)、添加文字颜色
1 2
| [attrStr addAttribute:NSForegroundColorAttributeName value: [UIColor redColor] range:NSMakeRange(0, 7)];
|
(3)、添加下划线
1
| [attrStr addAttribute:NSUnderlineStyleAttributeName value: [NSNumber numberWithInteger:NSUnderlineStyleSingle] range:NSMakeRange(0, 7)];
|
(4)、设置段落样式
1 2 3 4 5 6 7 8 9 10
| NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
paragraph.lineSpacing = 10;
paragraph.paragraphSpacing = 20;
paragraph.alignment = NSTextAlignmentLeft;
paragraph.firstLineHeadIndent = 30;
|
(5)、添加段落设置
1
| [attrStr addAttribute:NSParagraphStyleAttributeName value:paragraph range:NSMakeRange(0, [str length])];
|
(6)、添加链接
label添加链接注意:label链接是可以显示出来,但是不能点击,而textView是可以点击的,因为里面有shouldInteractWithURL代理方法回调。
1 2 3
| NSString *urlStr = @"www.baidu.com"; NSURL *url = [NSURL URLWithString:urlStr]; [attrStr addAttribute:NSLinkAttributeName value:url range:NSMakeRange(2, 7)];
|
(7)、一次性搞定:设字号为20,字体颜色为红色
1 2 3
| NSDictionary *attDict = [NSDictionary dictionaryWithObjectsAndKeys: [UIFont systemFontOfSize:20.0],NSFontAttributeName, [UIColor redColor],NSForegroundColorAttributeName, nil]; NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc] initWithString:@"犯我华夏者,虽远必诛!" attributes:attDict];
|
4、label其他一些常用属性:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(60, 100, 200, 0)];
label.backgroundColor = [UIColor lightGrayColor];
label.numberOfLines = 0;
label.attributedText = attrStr;
[label sizeToFit];
CGFloat height = label.frame.size.height; NSLog(@"height = %f",height);
|
**
PS:设置sizeToFit之后是可以取出label的高度的,这样做label高度自适应。但是如果你用第三方框架(如:Masonry)给其加约束,因为约束优先级最高,所以这句会失效
**
5、设置行间距
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| 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];
|
6、联系方式
邮箱: xiebangyao_1994@163.com
相关账号: