iOS Label文字分段顏色

來源:互聯網
上載者:User

標籤:

轉自 http://blog.csdn.net/lwjok2007/article/details/48241285

iOS開發中經常會遇到這樣的問題就是一個Label 中的文字需要兩種以上的顏色現實

比如註冊按鈕下一般會有服務合約,這裡的文字一般都會做區分

 

我們直接看代碼

 

[objc] view plain copy 
  1. UILabel *hintLabel=[[UILabel alloc]initWithFrame:CGRectMake(30, 120, 320, 66)];  
  2.     hintLabel.numberOfLines=0;  
  3.     [self.view addSubview:hintLabel];  
  4.       
  5.     NSMutableAttributedString *hintString=[[NSMutableAttributedString alloc]initWithString:@"點擊註冊按鈕即表示您已同意西遊隱私條款和服務合約"];  
  6.     //擷取要調整顏色的文字位置,調整顏色  
  7.     NSRange range1=[[hintString string]rangeOfString:@"西遊隱私條款"];  
  8.     [hintString addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:range1];  
  9.       
  10.     NSRange range2=[[hintString string]rangeOfString:@"服務合約"];  
  11.     [hintString addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:range2];  
  12.       
  13.     hintLabel.attributedText=hintString;  


其實,就是使用到了NSMutableAttributedString   的功能,Label設定 attributedText就好了

iOS Label文字分段顏色

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.