//定义一个可变字符串属性对象aStr
NSMutableAttributedString *aStr = [[NSMutableAttributedString alloc]initWithString:str];
//定义一个字典类对象dic存储设置的属性值,这里设置字体为粗体
NSDictionary *dic = @{NSFontAttributeName:[UIFont boldSystemFontOfSize:self.myLabel.font.pointSize] ,NSBackgroundColorAttributeName:[UIColor redColor]};
//定义要改变的字符串的范围
NSRange myRange = [str rangeOfString:title];
//调用aStr对象的setAttributes方法设置属性
[aStr setAttributes:dic range:myRange];
//把aStr对象赋给Label
self.myLabel.attributedText = aStr;
相关文章
- 04-10NSAttributedString字符串属性类
- 04-10struts2 Action获取表单传值(属性,类))
- 04-10伪类,伪元素和vertical-align属性
- 04-10c++中的类c字符串
- 04-10[UIKit学习]00.关于前置知识(storyboard,UIViewController,类扩展,项目属性)
- 04-10类的特殊属性
- 04-102021-09-29【类属性和类方法】【类的属性,统计一共创建多个对象】【类方法和静态方法】【案例方法总结】
- 04-10Ado.net 类扩展属性
- 04-10.net学习之继承、里氏替换原则LSP、虚方法、多态、抽象类、Equals方法、接口、装箱拆箱、字符串
- 04-10python字符串工具类