NSMutableAttributedString的简单用法

一直对这个类的用法有点糊涂,今天抽了一个时间研究了一下

1.首先来看系统的api(方法)

 1 @interface NSMutableAttributedString : NSAttributedString
 2
 3 - (void)replaceCharactersInRange:(NSRange)range withString:(NSString *)str;
 4 - (void)setAttributes:(nullable NSDictionary<NSString *, id> *)attrs range:(NSRange)range;
 5
 6 @end
 7
 8 @interface NSMutableAttributedString (NSExtendedMutableAttributedString)
 9
10 @property (readonly, retain) NSMutableString *mutableString;
11
12 - (void)addAttribute:(NSString *)name value:(id)value range:(NSRange)range;
13 - (void)addAttributes:(NSDictionary<NSString *, id> *)attrs range:(NSRange)range;
14 - (void)removeAttribute:(NSString *)name range:(NSRange)range;
15
16 - (void)replaceCharactersInRange:(NSRange)range withAttributedString:(NSAttributedString *)attrString;
17 - (void)insertAttributedString:(NSAttributedString *)attrString atIndex:(NSUInteger)loc;
18 - (void)appendAttributedString:(NSAttributedString *)attrString;
19 - (void)deleteCharactersInRange:(NSRange)range;
20 - (void)setAttributedString:(NSAttributedString *)attrString;
21
22 - (void)beginEditing;
23 - (void)endEditing;

2.在此呢 基本类 有两个方法3-4    又给这个NSMutableAttributedString添加了一个类别NSExtendedMutableAttributedString。简单介绍几个方法的用法

3.总的来说 共有这几种情况 3.范围替换 4.范围多属性 12.范围单属性 13.范围多属性 14.移除范围单属性 16.范围替换(用NSMutableAttributedString) 等 其他的自己尝试

4.下面是我简单的写了一点代码

 1     NSString *string = @"这是一个完整的句子吧";
 2
 3     UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(50, 70, 250, 50)];
 4         [self.view addSubview:label];
 5
 6     //初始化一个attriburitedString对象
 7     _attributeString = [[NSMutableAttributedString alloc] initWithString:string];
 8
 9     //给这个属性添加一个属性前3个字符的背景颜色
10     NSRange orRange = NSMakeRange(0, 3);
11     [_attributeString addAttribute:NSBackgroundColorAttributeName value:[UIColor yellowColor] range:orRange];
12
13
14     //更换string的部分字符串
15     NSRange reRange = NSMakeRange(3, 2);
16     [_attributeString replaceCharactersInRange:reRange withString:@"qinguangyi"];
17
18     //添加多个属性
19     NSRange seRange = NSMakeRange(8, 5);
20     [_attributeString setAttributes:@{
21                                       NSForegroundColorAttributeName:
22                                           [UIColor redColor],
23                                       NSBackgroundColorAttributeName:
24                                           [UIColor blueColor],
25                                       } range:seRange];
26
27     NSMutableAttributedString *newAttributeString = [[NSMutableAttributedString alloc] initWithString:@"NEW"];
28
29     /* 其他属性自己尝试
30     [_attributeString replaceCharactersInRange:NSMakeRange(0, 3) withString:@"123"];
31     [_attributeString insertAttributedString:newAttributeString atIndex:0];
32     [_attributeString deleteCharactersInRange:NSMakeRange(0, 3)];
33     [_attributeString appendAttributedString:newAttributeString];
34
35     [_attributeString setAttributedString:newAttributeString];
36      */
37
38
39
40     //最简单的给label赋值的方法打点调用attributedText
41     label.attributedText = _attributeString;

5.展示出来如图

时间: 2024-10-03 23:51:01

NSMutableAttributedString的简单用法的相关文章

iOS block-base 动画简单用法+关键帧动画设置线性变化速度的问题

本文转载至 http://www.tuicool.com/articles/aANBF3m 时间 2014-12-07 20:13:37  segmentfault-博客原文  http://segmentfault.com/blog/alan/1190000002411296 iOS的各种动画相漂亮,相信这是吸引很多人买iPhone的原因之一.不仅如此,这还是吸引我做iOS开发的一大原因,因为在iOS上给界面实现一些像样的动画实在是太轻松了! 这里就介绍一下iOS的block-based an

Android WIFI 简单用法

随着Wifi的普及,在开发App的时候对wifi的考虑越来越多了.例如程序的升级在wifi下可以省很多流量,在通信软件中的视频通话.可以实现高画质的传输等等,Android提供了WifiManager类来帮助开发者们管理Wifi.下面就简单来说一下WifiManager的简单用法把. 权限: 为了使用WfiManager 我们需要在Androidmanifest.xml 加入权限: //本例中使用了前两个.具体请按照需要添加权限. <uses-permission android:name=&quo

Android中资源文件中的字符串数组string-array简单用法

在Android中,用string-array是一种简单的提取XML资源文件数据的方法. 例子如下: 把相应的数据放到values文件夹的strings.xml文件里,或是其他自定义的xml中都可以,以下操作方法相同. <?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="sports"> <item>足球<

expect简单用法

1 #!/usr/expect/bin/expect -f 2 3 4 set loginuser [lrange $argv 0 0] 5 set loginpass [lrange $argv 1 1] 6 set ipaddr [lrange $argv 2 2] 7 set port [lrange $argv 3 3] 8 set timeout [lrange $argv 4 4] 9 set from [lrange $argv 5 5] 10 set to [lrange $ar

Tcpdump 的简单用法

Tcpdump 的简单用法 tcpdump是Linux命令行下使用最广泛的网络分析工具,运行的时候会将网卡运行在混杂模式下,需要root权限才能执行 下面是几个比较常见的参数: -w  保持到指定的文件 -i  指定监听的网卡,缺省显示第一块网卡 -nn 以IP方式显示host -v  显示详细信息 -s  指定数据包大小,缺省是65535 -t  不显示时间 ,缺省是显示时间戳 -c  获取数据包数量,缺省不限制,需要用Ctrl+c来终止 下面是关于命令关键字的说明 1.主要包括host,ne

C++ double转string类型以及MFC控件简单用法

这两天项目需要,测试c++库里面内容.生成jar再给Android调用.我没有学过C++,现在开始记录C++简单用法.测试时候一般都是使用mfc程序来测试,要输入值,显示结果吗.我用的编译环境vs2008. 一.double 转string #include <string> CString strResultx; strResultx.Format(_T("x:%.4f\n"), 89.7887878); 转换结果还是放在strResultx 2.两个字符串相连 CStr

vB SendMessage API 简单用法

vB SendMessage API 简单用法 1. 在Windows编程中,向文本框控件.列表控件.按钮控件等是我们最常接触的控件了.但是在VB中这些控件有时无法实现我们的需要.在这时,我们只要简单的利用Windows API函数就可以扩充这些控件的功能了.顾名思义,SendMessage函数就是向窗口(这里的窗口指的是向按钮.列表框.编辑框等具有hWnd属性的控件)发送消息的函数,该函数的定义如下:Declare Function SendMessage Lib "user32"

java中Object.equals()简单用法

/* equals()方法默认的比较两个对象的引用! */ class Child { int num; public Child(int x){ num = x; } //人文的抛出运行时异常的好处是:可以自定义错误信息! /*public boolean equals(Object o) throws ClassCastException{ if(!(o instanceof Child)) throw new ClassCastException("中文提示:类型错误"); Ch

UIDatePicker的简单用法

// 初始化UIDatePickerUIDatePicker *datePicker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, 200, 320, 216)];// 设置时区[datePicker setTimeZone:[NSTimeZone timeZoneWithName:@"GMT"]];// 设置当前显示时间[datePicker setDate:tempDate animated:YES];// 设置显示最大时间