label标题文字改变颜色

来源:互联网 发布:mac系统重装 编辑:程序博客网 时间:2024/05/21 20:59
NSMutableAttributedString *noteStr = [[NSMutableAttributedString alloc] initWithString:@"输入一段话,123改变颜色"];
NSRange redRange = NSMakeRange([[noteStr string] rangeOfString:@"123"].location, [[noteStr string] rangeOfString:@"123"].length);
[noteStr addAttribute:NSForegroundColorAttributeName value:colorWithRGBA(89, 212, 234, 1) range:redRange];
[Label setAttributedText:noteStr];

0 0
原创粉丝点击