赞
踩
在开发中,相信很多人会遇到在一个label中设置不同字体大小、不同颜色或者加下划线、删除线等问题呢,这里就是用到了NSMutableAttributedString(带属性的字符串)。
首先先了解一下NSMutableAttributedString:
初始化方法:
- (instancetype)initWithString:(NSString *)str;
- (instancetype)initWithString:(NSString *)str attributes:(nullable NSDictionary<NSString *, id> *)attrs;
初始化的方法和NSMutableString
一样。
包含的几个基本方法:
- (void)addAttribute:(NSString *)name value:(id)value range:(NSRange)range;//为某一范围内文字添加某个属性
- (void)addAttributes:(NSDictionary<NSString *, id> *)attrs range:(NSRange)range;//为某一范围内文字设置多个属性
- (void)removeAttribute:(NSString *)name range:(NSRange)range;//移除某范围内的某个属性
常见的属性有:
NSFontAttributeName //字体
NSParagraphStyleAttributeName //段落格式
NSForegroundColorAttributeName //字体颜色
NSBackgroundColorAttributeName //背景颜色
NSStrikethroughStyleAttributeName //删除线格式
NSUnderlineStyleAttributeName //下划线格式
NSStrokeColorAttributeName //删除线颜色
NSStrokeWidthAttributeName //删除线宽度
NSShadowAttributeName //阴影
简单例子:
NSString *string = @"我是一个中国人!";
//初始化字符串
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc]initWithString:string];
[attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:13.0] range:NSMakeRange(0,4)];
[attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(4, 4)];
[_label setAttributedText:attributedString];
运行结果:
另一个例子:
NSString *string = @"我是一个中国人!";
NSDictionary *attributeDict = @{NSFontAttributeName:[UIFont systemFontOfSize:15.0],NSForegroundColorAttributeName:[UIColor redColor],NSUnderlineStyleAttributeName:@(NSUnderlineStyleSingle)};
NSMutableAttributedString *str = [[NSMutableAttributedString alloc]initWithString:string attributes:attributeDict];
[_label setAttributedText:str];
运行结果:
具体效果可以根据需求然后根据以上属性进行设置呢。
以上如有错误,请留言指出谢谢。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。