iOS使用NSMutableAttributedString 實(shí)現(xiàn)富文本(不同顏色字體、下劃線等)

1.實(shí)例化方法和使用方法

實(shí)例化方法:

使用字符串初始化

- (id)initWithString:(NSString*)str;

例:

NSMutableAttributedString*AttributedStr = [[NSMutableAttributedStringalloc]initWithString:@"今天天氣不錯(cuò)呀"];

- (id)initWithString:(NSString*)str attributes:(NSDictionary*)attrs;

字典中存放一些屬性名和屬性值,如:

NSDictionary*attributeDict = [NSDictionarydictionaryWithObjectsAndKeys:

[UIFontsystemFontOfSize:15.0],NSFontAttributeName,

[UIColorredColor],NSForegroundColorAttributeName,

NSUnderlineStyleAttributeName,NSUnderlineStyleSingle,nil];

NSMutableAttributedString*AttributedStr = [[NSMutableAttributedStringalloc]initWithString:@"今天天氣不錯(cuò)呀"attributes:attributeDict];

- (id)initWithAttributedString:(NSAttributedString*)attester;

使用NSAttributedString初始化,跟NSMutableString,NSString類似

使用方法:

為某一范圍內(nèi)文字設(shè)置多個(gè)屬性

- (void)setAttributes:(NSDictionary*)attrs range:(NSRange)range;

為某一范圍內(nèi)文字添加某個(gè)屬性

- (void)addAttribute:(NSString*)name value:(id)value range:(NSRange)range;

為某一范圍內(nèi)文字添加多個(gè)屬性

- (void)addAttributes:(NSDictionary*)attrs range:(NSRange)range;

移除某范圍內(nèi)的某個(gè)屬性

- (void)removeAttribute:(NSString*)name range:(NSRange)range;

2.常見(jiàn)的屬性及說(shuō)明

NSFontAttributeName字體

NSParagraphStyleAttributeName段落格式

NSForegroundColorAttributeName字體顏色

NSBackgroundColorAttributeName背景顏色

NSStrikethroughStyleAttributeName刪除線格式

NSUnderlineStyleAttributeName下劃線格式

NSStrokeColorAttributeName刪除線顏色

NSStrokeWidthAttributeName刪除線寬度

NSShadowAttributeName陰影

更多方法和屬性說(shuō)明詳見(jiàn)蘋果官方說(shuō)明文檔:

https://developer.apple.com/library/ios/documentation/Cocoa/Reference/Foundation/Classes/NSMutableAttributedString_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40003689

3.使用實(shí)例

UILabel*testLabel=[[UILabelalloc]initWithFrame:CGRectMake(0,100,320,30)];

testLabel.backgroundColor=[UIColorlightGrayColor];

testLabel.textAlignment=NSTextAlignmentCenter;

NSMutableAttributedString*AttributedStr=[[NSMutableAttributedStringalloc]initWithString:@"今天天氣不錯(cuò)呀"];

[AttributedStraddAttribute:NSFontAttributeName

value:[UIFontsystemFontOfSize:16.0]

range:NSMakeRange(2,2)];

[AttributedStraddAttribute:NSForegroundColorAttributeName

value:[UIColorredColor]

range:NSMakeRange(2,2)];

testLabel.attributedText=AttributedStr;

[self.viewaddSubview:testLabel];

運(yùn)行效果:

另外,其他可以設(shè)置text的控件(如UIButton,UITextField)也都有該屬性,該文章不夠詳細(xì),只是簡(jiǎn)單介紹,其他效果的實(shí)現(xiàn)參考API中更多的屬性及使用方法。

轉(zhuǎn)載自:http://blog.csdn.net/reylen/article/details/41208747

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容