文字富文本化

来源:互联网 发布:windows辅助功能选项 编辑:程序博客网 时间:2024/04/29 14:50
  NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"啊哈哈哈好烦"];
   
//设置文字颜色
    [str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(
0,1)];
    [str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(
4,2)];
   
   
//设置字体
    [str addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:
30] range:NSMakeRange(1,3)];
   
self.label.attributedText = str;
0 0
原创粉丝点击