0
点赞
收藏
分享

微信扫一扫

iOS 改变UILabel部分颜色

滚过红尘说红尘 2022-05-14 阅读 77

 //协议

    UILabel *xieLabel = [[UILabel alloc] init];

    xieLabel.textColor = TextGrayColor;

    xieLabel.font = [UIFont systemFontOfSize:12];

    NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:@"我已阅读并同意《存工资服务协议》"];

    [string addAttribute:NSForegroundColorAttributeName value:[UIColor lightGrayColor] range:NSMakeRange(0, 7)];

    [string addAttribute:NSForegroundColorAttributeName value:[UIColor orangeColor] range:NSMakeRange(7, string.length - 7)];

    xieLabel.attributedText = string;

    xieLabel.userInteractionEnabled = YES;

    UITapGestureRecognizer *xieyitap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(xiyiAction)];

    [xieLabel addGestureRecognizer:xieyitap];


举报

相关推荐

0 条评论