zoukankan      html  css  js  c++  java
  • 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;  //设置富文本
  • 相关阅读:
    马拦过河卒
    最小生成树 kruskal算法
    链表,关键是结构体的快排
    Shortest Prefixes 字典树
    串的匹配
    A Beautiful Meadow
    Tiling
    邻接矩阵的宽度遍历
    邻接矩阵的深度遍历
    Form1.frm
  • 原文地址:https://www.cnblogs.com/mafeng/p/7305271.html
Copyright © 2011-2022 走看看