您的位置:首页 > 其它

设置标签中字符串的子串(指定位置)的颜色

2014-11-12 09:55 316 查看
                                     设置标签中字符串的子串(指定位置)的颜色

/**

 *  @brief  
函数作用: 设置指定位置字符串的颜色

 *

 *  @param  
参数解释: 

                     colorName      字符串颜色

                     colorLoc       字符串颜色下标

                     colorLength    颜色长度

                     labelTitle     字符串名称

 *

 *  @return 
函数返回值:无

 */
- (void)setColorName:(UIColor*)colorName  colorLoc:(NSUInteger)loc colorLength:(NSUInteger)len
labelTitle:(NSString*)title

{

    NSMutableAttributedString *attributedString = [[NSMutableAttributedString
alloc]
initWithString:title];

    [attributedString addAttribute:NSForegroundColorAttributeName
                            
value:colorName
                            
range:NSMakeRange(loc, len)];

    self.font = [UIFont
fontWithName:@"Avenir-Light"
size:28];

    self.textAlignment =
NSTextAlignmentCenter;
   
self.attributedText = attributedString;

    [self
sizeToFit];
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息