开发中有时候会需要在一个label中让不同的字符串或者特定范围内的字符串和label中的其他内容显示不同的字体和颜色。使用label,attributeText能轻易实现。
上代码,创建一个NSMutableAttributeString 用来添加属性,使用NSRange的相关方法得到所需要改变的范围的字符串。
NSString *changeStr = @"this is a changeable string";
NSString *subStr = @"string";
//取出 “string” 在字符串中的位置
NSRange range = [changeStr rangeOfString:subStr];
NSMutableAttributedString *strAttribute = [[NSMutableAttributedString alloc] initWithString:changeStr];
//"this"的字体颜色
[strAttribute addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, 4)];
//“is” 的字体大小
[strAttribute addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:13] range:NSMakeRange(5, 2)];
//设置特定范围内的字符串的样式
[strAttribute addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:30] range:range];
[strAttribute addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:range];
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(30, 100, 300, 50)];
//使用attributeText设置lable中的字符串样式
label.font = [UIFont systemFontOfSize:15];
label.textAlignment = NSTextAlignmentCenter;
label.attributedText = strAttribute;
[self.view addSubview:label];
得到的效果图如下