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

在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)文字設(shè)置多個屬性

  • (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;
  1. 常見的屬性及說明
    

NSFontAttributeName 字體
NSParagraphStyleAttributeName 段落格式
NSForegroundColorAttributeName 字體顏色
NSBackgroundColorAttributeName 背景顏色
NSStrikethroughStyleAttributeName刪除線格式
NSUnderlineStyleAttributeName 下劃線格式
NSStrokeColorAttributeName 刪除線顏色
NSStrokeWidthAttributeName刪除線寬度
NSShadowAttributeName 陰影

  1. 使用實例
 UILabel *testLabel = [[UILabel alloc]initWithFrame:CGRectMake(0, 100, 320, 30)];
   testLabel.backgroundColor = [UIColor lightGrayColor];
   testLabel.textAlignment = NSTextAlignmentCenter;
   NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc]initWithString:@"今天天氣不錯呀"];
   [AttributedStr addAttribute:NSFontAttributeName
                         value:[UIFont systemFontOfSize:16.0]
                         range:NSMakeRange(2, 2)];
   [AttributedStr addAttribute:NSForegroundColorAttributeName
                         value:[UIColor redColor]
                         range:NSMakeRange(2, 2)];
   testLabel.attributedText = AttributedStr;
   [self.view addSubview:testLabel];

運行效果:

屏幕快照 2016-09-28 下午8.20.35.png

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

轉(zhuǎn)載自:http://snowyshell.blog.163.com/blog/static/2209140342014475383375/

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

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

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