美文网首页iOS Developer
字符串中加深个别字体颜色和字体大小

字符串中加深个别字体颜色和字体大小

作者: Mrxiaowang | 来源:发表于2017-01-06 10:38 被阅读13次

    NSMutableAttributedString *textColor = [[NSMutableAttributedString alloc]initWithString:_bookPrice.text];

    NSRange rangel = [[textColor string] rangeOfString:[_bookPrice.text substringFromIndex:6]];

    [textColor addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:rangel];

    [textColor addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:17] range:rangel];

    [_lable setAttributedText:textColor];

    相关文章

      网友评论

        本文标题:字符串中加深个别字体颜色和字体大小

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