一个Label上面显示两种不的字体

例如:在iOS中显示 “浏览:113” , 当‘浏览’的字体和‘113’的颜色不同时我们该如何设置呢?

NSString textString = [NSString stringWithFormat:@"浏览:%ld",113];


第一步:将textString改为可变的字符串

NSMutableAttributedString *noteStr = [[NSMutableAttributedString alloc] initWithString:textString];


第二步:找到‘浏览’两个字在字符串中的位置

NSRange redRange = NSMakeRange([[noteStr string] rangeOfString:@"浏览"].location, [[noteStr string] rangeOfString:@"浏览"].length);


第三步:设置‘浏览’两个字的颜色

[noteStr addAttribute:NSForegroundColorAttributeName value:[UIColor darkGrayColor] range:redRange];


第四步:显示到对应的Label上

[self.clickLabel setAttributedText:noteStr];


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值