iOS Label文字分段颜色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS Label文字分段颜色相关的知识,希望对你有一定的参考价值。

转自 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文字分段颜色的主要内容,如果未能解决你的问题,请参考以下文章

iOS App转让/转移Label文字分段颜色UIWebView禁止滚动获取设备的 DeviceTokeniOS友盟分享,指定界面显示需要分享到的平台的解决方案

iOS文字描边

UILabel 分段改变文字颜色和字体

转自定义iOS7导航栏背景,标题和返回按钮文字颜色 -- 不错不错!!

自定义iOS7导航栏背景,标题和返回按钮文字颜色

c#怎么更改Label文字的颜色