在iOS開發(fā)中莹菱,常常會有一段文字顯示不同的顏色和字體鞭呕,或者給某幾個文字加刪除線或下劃線的需求。之前在網(wǎng)上找了一些資料篇恒,有的是重繪UILabel的textLayer扶檐,有的是用html5實現(xiàn)的,都比較麻煩胁艰,而且很多UILabel的屬性也不起作用了款筑,效果都不理想。后來了解到NSMuttableAttstring(帶屬性的字符串)腾么,上面的一些需求都可以很簡便的實現(xiàn)奈梳。
1.實例化方法和使用方法
實例化方法:
使用字符串初始化
- (id)initWithString:(NSString*)str;
例:
NSMutableAttributedString*AttributedStr = [[NSMutableAttributedStringalloc]initWithString:@"今天天氣不錯呀"];
- (id)initWithString:(NSString*)str attributes:(NSDictionary*)attrs;
字典中存放一些屬性名和屬性值,如:
NSDictionary*attributeDict = [NSDictionarydictionaryWithObjectsAndKeys:
[UIFontsystemFontOfSize:15.0],NSFontAttributeName,
[UIColorredColor],NSForegroundColorAttributeName,
NSUnderlineStyleAttributeName,NSUnderlineStyleSingle,nil];
NSMutableAttributedString*AttributedStr = [[NSMutableAttributedStringalloc]initWithString:@"今天天氣不錯呀"attributes:attributeDict];
- (id)initWithAttributedString:(NSAttributedString*)attester;
使用NSAttributedString初始化解虱,跟NSMutableString攘须,NSString類似
使用方法:
為某一范圍內(nèi)文字設置多個屬性
- (void)setAttributes:(NSDictionary*)attrs range:(NSRange)range;
為某一范圍內(nèi)文字添加某個屬性
- (void)addAttribute:(NSString*)name value:(id)value range:(NSRange)range;
為某一范圍內(nèi)文字添加多個屬性
- (void)addAttributes:(NSDictionary*)attrs range:(NSRange)range;
移除某范圍內(nèi)的某個屬性
- (void)removeAttribute:(NSString*)name range:(NSRange)range;
2.常見的屬性及說明
NSFontAttributeName字體
NSParagraphStyleAttributeName段落格式
NSForegroundColorAttributeName字體顏色
NSBackgroundColorAttributeName背景顏色
NSStrikethroughStyleAttributeName刪除線格式
NSUnderlineStyleAttributeName下劃線格式
NSStrokeColorAttributeName刪除線顏色
NSStrokeWidthAttributeName刪除線寬度
NSShadowAttributeName陰影
更多方法和屬性說明詳見蘋果官方說明文檔:
3.使用實例
UILabel*testLabel=[[UILabelalloc]initWithFrame:CGRectMake(0,100,320,30)];
testLabel.backgroundColor=[UIColorlightGrayColor];
testLabel.textAlignment=NSTextAlignmentCenter;
NSMutableAttributedString*AttributedStr=[[NSMutableAttributedStringalloc]initWithString:@"今天天氣不錯呀"];
[AttributedStraddAttribute:NSFontAttributeName
value:[UIFontsystemFontOfSize:16.0]
range:NSMakeRange(2,2)];
[AttributedStraddAttribute:NSForegroundColorAttributeName
value:[UIColorredColor]
range:NSMakeRange(2,2)];
testLabel.attributedText=AttributedStr;
[self.viewaddSubview:testLabel];
運行效果:
另外,其他可以設置text的控件(如UIButton饭寺,UITextField)也都有該屬性阻课,該文章不夠詳細,只是簡單介紹艰匙,其他效果的實現(xiàn)參考API中更多的屬性及使用方法。
以下是簡單的一個封裝:
UILabel+ExtensionXY.h
/**
給label單獨設置changeText的文字顏色
*/
- (BOOL)setAttributedText:(NSString*)text FontF:(CGFloat)fontF Color:(UIColor*)color changeText:(NSString*)changeText;
/**
給label單獨設置range位子的文字顏色
*/
- (BOOL)setAttributedText:(NSString*)text FontF:(CGFloat)fontF Color:(UIColor*)color Range:(NSRange)range;
UILabel+ExtensionXY.m
/**
設置label中text中第一個changeText的字體大小顏色
@paramtextlabel的文本
@paramfontF字體大小
@paramcolor顏色
@paramchangeText需要改變的內(nèi)容
@return改變是否成功
*/
- (BOOL)setAttributedText:(NSString*)text FontF:(CGFloat)fontF Color:(UIColor*)color changeText:(NSString*)changeText
{
if(changeText.length) {
NSRangerange = [textrangeOfString:changeText];
if(range.location!=NSNotFound) {
return[selfsetAttributedText:textFontF:fontFColor:colorRange:range];
}
}
self.text= text;
returnNO;
}
/**
設置label中text中第一個changeText的字體大小顏色
@paramtextlabel的文本
@paramfontF字體大小
@paramcolor顏色
@paramrange要改變的地方
@return改變是否成功
*/
- (BOOL)setAttributedText:(NSString*)text FontF:(CGFloat)fontF Color:(UIColor*)color Range:(NSRange)range
{
if(!text) {
returnNO;
}
self.text= text;
NSMutableAttributedString*AttributedStr = [[NSMutableAttributedStringalloc]initWithAttributedString:self.attributedText];
if(range.location+ range.length> text.length) {
returnNO;
}else{
//NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc]initWithString:text];
if(!AttributedStr) {
AttributedStr = [[NSMutableAttributedStringalloc]initWithString:text];
}
if(fontF) {
[AttributedStraddAttribute:NSFontAttributeName
value:[UIFontsystemFontOfSize:fontF]
range:range];
}
if(color) {
[AttributedStraddAttribute:NSForegroundColorAttributeName
value:color
range:range];
}
self.attributedText= AttributedStr;
returnYES;
}
}