iOS利用NSMutableAttributedString实现富文本的方法小结
程序员文章站
2023-12-14 12:58:22
前言
在ios开发过程中,经常会用到给字体加下划线,显示不同颜色和大小的字体等需求,经常遇到这种需求都是直接到百度或者谷歌直接把代码粘过来,并没有做系统的整理,今天刚好有...
前言
在ios开发过程中,经常会用到给字体加下划线,显示不同颜色和大小的字体等需求,经常遇到这种需求都是直接到百度或者谷歌直接把代码粘过来,并没有做系统的整理,今天刚好有时间,把这部分的内容整理一下,便于后续的开发,闲话不说,接下来就跟着我一起来了解一下nsmutableattributedstring吧.
nsattributedstring
nsattributedstring对象管理适用于字符串中单个字符或字符范围的字符串和关联的属性集(例如字体和字距)。nsattributedstring对象的默认字体是helvetica 12点,可能与平台的默认系统字体不同。因此,您可能希望创建适用于您的应用程序的非默认属性的新字符串。您还可以使用nsparagraphstyle类及其子类nsmutableparagraphstyle来封装nsattributedstring类使用的段落或标尺属性。
实例化方法和使用方法
实例化方法
使用字符串初始化
- (instancetype)initwithstring:(nsstring *)str;
代码示例
nsmutableattributedstring *attributedstring = [[nsmutableattributedstring alloc] initwithstring:@"测试数据"];
字典中存放一些属性名和属性值
- (instancetype)initwithstring:(nsstring *)str attributes:(nsdictionary<nsstring *,id> *)attrs;
代码示例
nsdictionary *attributeddict = @{ nsfontattributename:[uifont systemfontofsize:16.0], nsforegroundcolorattributename:[uicolor redcolor], nsunderlinestyleattributename:@(nsunderlinestylethick) }; nsmutableattributedstring *attributedstring = [[nsmutableattributedstring alloc] initwithstring:@"测试数据" attributes:attributeddict];
使用nsattributedstring初始化,与nsmutablestring,nsstring类似
- (instancetype)initwithattributedstring:(nsattributedstring *)attrstr;
使用方法
为某一范围内的文字设置多个属性的方法
- (void)setattributes:(nsdictionary<nsstring *,id> *)attrs range:(nsrange)range;
//代码示例
nsstring *string = @"测试数据"; nsdictionary *attributeddict = @{ nsfontattributename:[uifont systemfontofsize:16.0], nsforegroundcolorattributename:[uicolor redcolor], nsunderlinestyleattributename:@(nsunderlinestylethick) }; nsmutableattributedstring *attributedstring = [[nsmutableattributedstring alloc] initwithstring:string]; [attributedstring setattributes:attributeddict range:nsmakerange(0, string.length)];
为某一范围内的文字添加某个属性的方法
- (void)addattribute:(nsstring *)name value:(id)value range:(nsrange)range;
//代码示例
nsstring *string = @"测试数据"; nsmutableattributedstring *attributedstring = [[nsmutableattributedstring alloc] initwithstring:string]; [attributedstring addattribute:nsforegroundcolorattributename value:[uicolor bluecolor] range:nsmakerange(0, string.length)];
为某一范围内的文字添加多个属性的方法
- (void)addattributes:(nsdictionary<nsstring *,id> *)attrs range:(nsrange)range;
//代码示例
nsstring *string = @"测试数据"; nsdictionary *attributeddict = @{ nsfontattributename:[uifont systemfontofsize:16.0], nsforegroundcolorattributename:[uicolor redcolor], nsunderlinestyleattributename:@(nsunderlinestylethick) }; nsmutableattributedstring *attributedstring = [[nsmutableattributedstring alloc] initwithstring:string]; [attributedstring addattributes:attributeddict range:nsmakerange(0, string.length)];
移除某个范围内的某个属性的方法
- (void)removeattribute:(nsstring *)name range:(nsrange)range;
//代码示例
nsstring *string = @"测试数据"; nsdictionary *attributeddict = @{ nsfontattributename:[uifont systemfontofsize:16.0], nsforegroundcolorattributename:[uicolor redcolor], nsunderlinestyleattributename:@(nsunderlinestylethick) }; nsmutableattributedstring *attributedstring = [[nsmutableattributedstring alloc] initwithstring:string]; [attributedstring addattributes:attributeddict range:nsmakerange(0, string.length)]; [attributedstring removeattribute:nsforegroundcolorattributename range:nsmakerange(0, string.length)];
属性及说明
key | 说明 |
---|---|
nsfontattributename | 字体,value是uifont对象 |
nsparagraphstyleattributename | 绘图的风格(居中,换行模式,间距等诸多风格),value是nsparagraphstyle对象 |
nsforegroundcolorattributename | 文字颜色,value是uifont对象 |
nsligatureattributename | 字符连体,value是nsnumber |
nskernattributename | 字符间隔 |
nsstrikethroughstyleattributename | 删除线,value是nsnumber |
nsunderlinestyleattributename | 下划线,value是nsnumber |
nsstrokecolorattributename | 描绘边颜色,value是uicolor |
nsstrokewidthattributename | 描边宽度,value是nsnumber |
nsshadowattributename | 阴影,value是nsshadow对象 |
nstexteffectattributename | 文字效果,value是nsstring |
nsattachmentattributename | 附属,value是nstextattachment 对象 |
nslinkattributename | 链接,value是nsurl or nsstring |
nsbaselineoffsetattributename | 基础偏移量,value是nsnumber对象 |
nsstrikethroughcolorattributename | 删除线颜色,value是uicolor |
nsobliquenessattributename | 字体倾斜 |
nsexpansionattributename | 字体扁平化 |
nsverticalglyphformattributename | 垂直或者水平,value是 nsnumber,0表示水平,1垂直 |
富文本段落排版格式属性说明
属性 | 说明 |
---|---|
linespacing | 字体的行间距 |
firstlineheadindent | 首行缩进 |
alignment | (两端对齐的)文本对齐方式:(左,中,右,两端对齐,自然) |
linebreakmode | 结尾部分的内容以……方式省略 ( "...wxyz" ,"abcd..." ,"ab...yz") |
headindent | 整体缩进(首行除外) |
minimumlineheight | 最低行高 |
maximumlineheight | 最大行高 |
paragraphspacing | 段与段之间的间距 |
paragraphspacingbefore | 段首行空白空间 |
basewritingdirection | 书写方向(一共三种) |
hyphenationfactor | 连字属性 在ios,唯一支持的值分别为0和1 |
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。