zoukankan      html  css  js  c++  java
  • 局部富文本

      UILabel *testLabel = [[UILabel alloc]initWithFrame:CGRectMake(0, 100, 320, 30)];

      testLabel.backgroundColor = [UIColor lightGrayColor];

      testLabel.textAlignment = NSTextAlignmentCenter;

      NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc]initWithString:@"今天天气不错呀"];

      [AttributedStr addAttribute:NSFontAttributeName

                            value:[UIFont systemFontOfSize:16.0]

                            range:NSMakeRange(2, 2)];

      [AttributedStr addAttribute:NSForegroundColorAttributeName

                            value:[UIColor redColor]

                            range:NSMakeRange(2, 2)];

      testLabel.attributedText = AttributedStr;

      [self.view addSubview:testLabel];

  • 相关阅读:
    6月17日
    6月16日
    6月15日
    6月14日
    6月13日
    6月12日
    6月11日
    6月10日
    6月8日
    6月5日
  • 原文地址:https://www.cnblogs.com/huoran1120/p/5614677.html
Copyright © 2011-2022 走看看