iOS 改變UILabel部分顏色


 //協議

    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];

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM