iOS使用NSMutableAttributedString实现简单富文本

在iOS开发中,常常会有一段文字显示不同的颜色和字体,或者给某几个文字加删除线或下划线的需求。之前在网上找了一些资料,有的是重绘UILabel的textLayer,有的是用html5实现的,都比较麻烦,而且很多UILabel的属性也不起作用了,效果都不理想。后来了解到NSMuttableAttstring(带属性的字符串),上面的一些需求都可以很简便的实现。

运行效果:


iOS使用NSMutableAttributedString实现简单富文本_第1张图片
效果

1.实例化方法和使用方法

实例化方法
- (id)initWithString:(NSString *)str;

例:



NSMutableAttributedString *attributedStr = [[NSMutableAttributedString alloc] initWithString:@"你好,世界!"];

设置显示的字符串和要显示不同文字间的设置
- (id)initWithString:(NSString *)str attributes:(NSDictionary *)attrs;
字典中存放一些属性名称和属性值,如:


NSDictionary *attributeDict = [NSDictionary dictionaryWithObjectAndKeys:[UIFont systemFontOfSize:15.0f], NSFontAttributeName, [UIColor redColor], NSForegroundColorAttributeName, nil
];


1.为某一范围内文字设置多个属性
- (void)setAttributes:(NSDictionary *)attrs range:(NSRange)range;
为某一范围内文字添加某个属性
- (void)addAttribute:(NSString *)name value:(id)value range:(NSRange)range;
为某一范围内文字添加多个属性
- (void)addAttributes:(NSDictionary *)attrs range:(NSRange)range;
移除某范围内的某个属性
- (void)removeAttribute:(NSString *)name range:(NSRange)range;

2.常见的属性及说明

NSFontAttributeName
字体
NSParagraphStyleAttributeName
段落格式
NSForegroundColorAttributeName
字体颜色
NSBackgroundColorAttributeName
背景颜色
NSStrikethroughStyleAttributeName
删除线格式
NSUnderlineStyleAttributeName
下划线格式
NSStrokeColorAttributeName
删除线颜色
NSStrokeWidthAttributeName
删除线宽度
NSShadowAttributeName
阴影

3.使用实例:


// 富文本文字

NSString *title = @"物业缴费: \n 1.物业共用部位共用设施设备的日常运行维护费用(含租区内正常工作时间的空调费,公共区域水费、排污费、电费、热水费、空调费等公共事业费用); 2.物业管理区域(公共区域)清洁卫生费用; 3.物业管理区域(公共区域)绿化养护费用; 4.物业管理区域秩序维护费用,办公费用; 5.物业管理企业固定资产折旧; 6.物业共用部位、共用设施设备及公众责任保险费用。";


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


// 设置前五个字符大小


[attributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:13.0f] range:NSMakeRange(0, 5)];


// 设置前五个字符格外颜色


UIColor *color = [UIColor colorWithRed:0.98 green:0.6 blue:0.6 alpha:1.0];


[attributedStr addAttribute:NSForegroundColorAttributeName value:color range:NSMakeRange(0, 5)];


// 设置剩余字符的大小


[attributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:12.0f] range:NSMakeRange(5, title.length - 5)];


// 把字符添加到 UILabel


UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(20, 0, 320, 80)];


label.attributedText = attributedStr;


官方说明文档:地址

你可能感兴趣的:(iOS使用NSMutableAttributedString实现简单富文本)