让label中的不同字符显示不同的样式

开发中有时候会需要在一个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];

得到的效果图如下


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值