iOS-Label中字符显示

有时可能会遇到这样的问题,一个label中设置的文本含有2种以上不同的格式,又不能把它拆解为两个label来显示,这时用NSMutableAttributedString可以很好的解决问题。


示例如下:

NSMutableAttributedString *text = [[NSMutableAttributedString alloc] initWithAttributedString: label.attributedText];
    [text addAttribute: NSForegroundColorAttributeName value: [UIColor redColor] range: NSMakeRange(10, 1)];
    [label setAttributedText: text];


iOS-Label中字符显示,布布扣,bubuko.com

iOS-Label中字符显示

上一篇:手机WEB页面(HTML5)实现一键拨号及短信发送功能


下一篇:Android ViewPager使用方法