iOS -- YYText富文本

Posted ⬆️小马哥⬆️

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS -- YYText富文本相关的知识,希望对你有一定的参考价值。

NSMutableAttributedString *text  = [[NSMutableAttributedString alloc] initWithString: [NSString stringWithFormat:@"%@", kRealName]];
    [text setYy_color:kDarkColor];
    NSMutableAttributedString *one  = [[NSMutableAttributedString alloc] initWithString: [NSString stringWithFormat:@"(%@)", kRole_name]];
    [one setYy_color:WhiteColor];
    [text appendAttributedString:one];
    titleLabel.attributedText = text;
    text.yy_lineSpacing = 5;
    text.yy_font = [UIFont systemFontOfSize:14];
   // text.yy_color = ThemeColor;
    __weak typeof(self) weakself = self;
   /*
    [text yy_setTextHighlightRange:NSMakeRange(10, 7) color:UIColorFromRGBValue(0x22b4e1) backgroundColor:[UIColor clearColor] tapAction:^(UIView * _Nonnull containerView, NSAttributedString * _Nonnull text, NSRange range, CGRect rect) {
        NSLog(@"xxx协议被点击了");
        
    }];
    */
    titleLabel.numberOfLines = 0;  //设置多行显示
    titleLabel.preferredMaxLayoutWidth = kScreenWidth - 30; //设置最大的宽度
    titleLabel.attributedText = text;  //设置富文本

 

以上是关于iOS -- YYText富文本的主要内容,如果未能解决你的问题,请参考以下文章

iOS-NSMutableAttributedString富文本的实现

iOS富文本实例

关于iOS富文本使用

iOS小技能:富文本编辑器

iOS小技能:富文本编辑器(下篇)

iOS-Swift3富文本(UILable文本图文混排)