同一段文字设置不同的颜色和字号字体

 直接看代码吧:

-(void)fuwenbenLabel:(UILabel *)labell FontNumber:(id)font AndRange:(NSRange)range AndColor:(UIColor *)vaColor

{

    NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:labell.text];

    //设置字号

    [str addAttribute:NSFontAttributeName value:font range:range];

    //设置文字颜色

    [str addAttribute:NSForegroundColorAttributeName value:vaColor range:range];

    labell.attributedText = str;

}

posted @ 2016-09-10 12:26  高晓牛  阅读(1253)  评论(0编辑  收藏  举报