码迷,mamicode.com
首页 > 移动开发 > 详细

iOS -- YYText富文本

时间:2017-08-08 11:05:39      阅读:513      评论:0      收藏:0      [点我收藏+]

标签:rect   nes   format   sys   self   string   init   type   ring   

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富文本

标签:rect   nes   format   sys   self   string   init   type   ring   

原文地址:http://www.cnblogs.com/mafeng/p/7305271.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!