Label文字多种颜色

来源:互联网 发布:visio2013网络拓扑图 编辑:程序博客网 时间:2024/05/07 22:54


NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"总共%@题",numStr]];      [str addAttribute:NSForegroundColorAttributeName value:DOMINICAL_COLOR range:NSMakeRange(0,2)];      [str addAttribute:NSForegroundColorAttributeName value:SHALLOW_GREEN_COLOR range:NSMakeRange(2,numStr.length)];      [str addAttribute:NSForegroundColorAttributeName value:DOMINICAL_COLOR range:NSMakeRange(2+numStr.length,1)];            UILabel *titleLabel3 = [[UILabel alloc] initWithFrame:CGRectMake(5, CGRectGetMaxY(lineView.frame)+5, 100, 20)];      titleLabel3.backgroundColor = [UIColor clearColor];      titleLabel3.font = MBLACK15_FONT;      titleLabel3.attributedText = str;      [self addSubview:titleLabel3];


0 0
原创粉丝点击