美文网首页
iOS UILable 富文本的使用

iOS UILable 富文本的使用

作者: lymdd | 来源:发表于2018-07-02 09:12 被阅读0次
        NSMutableAttributedString *muteStr = [[NSMutableAttributedString alloc] initWithString:@"*封面图"];
        [muteStr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, 1)];
        
        titleLabel.attributedText = muteStr;
    

    NSFontAttributeName          // 字体

    NSParagraphStyleAttributeName    // 段落格式

    NSForegroundColorAttributeName    // 字体颜色

    NSBackgroundColorAttributeName   // 背景颜色

    NSStrikethroughStyleAttributeName  // 删除线格式

    NSUnderlineStyleAttributeName   //下划线格式

    NSStrokeColorAttributeName    //删除线颜色

    NSStrokeWidthAttributeName      //删除线宽度

    NSShadowAttributeName        //阴影

    相关文章

      网友评论

          本文标题:iOS UILable 富文本的使用

          本文链接:https://www.haomeiwen.com/subject/ncskuftx.html