NSAttributedString 带属性的字符串

NSAttributedString 带属性的字符串

  • set都是改变之前的设置或取代同类.比如设置代理,通常代理只是一个对象属性,重复设置,也只有一个,具体起作用看情况
  • add都是添加,补充之前的设置,或添加同类.比如添加target,添加消息,addOberver等等,都是添加到集合,每个添加的都有效
    ![image](images/屏幕快照 2015-11-09 15.25.16.png)
   // setAttributes:(字典),是设置改变Attributes字典指向(Attributes字典存字符串属性的所有键值对),改变属性字典指向了,之前设置的无效
   //addAttribute:(键值对)/addAttributes:(字典)往Attributes字典调加属性设置的键值对或字典,未改变属性字典指向,之前设置的非同一key的有效.
    //方法名规律
   // set都是改变之前的设置或取代同类.add都是添加,补充之前的设置,或添加同类
NSString:NSObject//无属性字符串,不可变
NSAtrributedString:NSObject//带属性字符串
//属性和字符串都不可变,一创建好就不可变

每个字符独立接收属性(range,批量设置范围内的所有字符,但每个字符独立接收属性)
重复设置同一字符(在同一字符串中位置相同),最后一次有效
  • 例子利用TextField的attributedPlaceholder来探讨NSAttributedString
@property(nullable, nonatomic,copy)   NSAttributedString     *attributedPlaceholder;
  • NSAttributedString不可变.(类NSString)字符串和属性在创建后,不可变.(用之创建新字符串不是)
带有属性的字符串, 富文本
由2部分组成
文字内容 : NSString *
文字属性 : NSDictionary *
文字颜色 - NSForegroundColorAttributeName
字体大小 - NSFontAttributeName
下划线 - NSUnderlineStyleAttributeName
背景色 - NSBackgroundColorAttributeName
    NSMutableDictionary *attributes = [NSMutableDictionary dictionary];
    attributes[NSForegroundColorAttributeName] = [UIColor yellowColor];
    attributes[NSBackgroundColorAttributeName] = [UIColor redColor];
    attributes[NSUnderlineStyleAttributeName] = @YES;
    //创建新的属性字符串,创建后不可变(非指针指向不可变,而是字符串本身和属性不可变).所以创建时就要设置好属性
    self.attributedPlaceholder = [[NSAttributedString alloc] initWithString:self.placeholder attributes:attributes];
  • NSMutableAttributedString可变(类NSMutableString)字符串和属性在创建后,可变.
 ////创建新的属性字符串,创建后可变,
  NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:self.placeholder];
  // 创建后改变属性
  NSMutableDictionary *attributes = [NSMutableDictionary dictionary];
  attributes[NSForegroundColorAttributeName] = [UIColor yellowColor];
  //1set
  [string setAttributes:attributes range:NSMakeRange(0, 1)];
  
  NSMutableDictionary *attributes2 = [NSMutableDictionary dictionary];
  attributes2[NSBackgroundColorAttributeName] = [UIColor redColor];
  attributes2[NSUnderlineStyleAttributeName] = @YES;
  
 // setAttributes:(字典),是设置改变Attributes字典指向(Attributes字典存字符串属性的所有键值对),改变属性字典指向了,之前设置的//1set无效,因为属性作用是在每个字符的,//2setRange(0, 2)包含了//1setRange(0, 1)中的字符所以//1set被覆盖了属性
 
 //2set
  [string setAttributes:attributes2 range:NSMakeRange(0, 2)];
  
  //addAttribute:(键值对)/addAttributes:(字典)往Attributes字典调加属性设置的键值对或字典,未改变属性字典指向,之前设置的非同一key的有效.
  [string addAttribute:NSForegroundColorAttributeName value:[UIColor yellowColor] range:NSMakeRange(0, 1)];
  [string addAttribute:NSBackgroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, 1)];
  [string addAttribute:NSUnderlineStyleAttributeName value:@YES range:NSMakeRange(1, 1)];
  self.attributedPlaceholder = string;

  • UILabel利用
UILabel *label = [[UILabel alloc] init];
//    label.text = @"你好哈哈哈";
    NSMutableAttributedString *text = [[NSMutableAttributedString alloc] initWithString:@"你好哈哈哈"];
    [text addAttribute:NSForegroundColorAttributeName value:[UIColor yellowColor] range:NSMakeRange(0, 3)];
    [text addAttribute:NSBackgroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(2, 3)];
    label.attributedText = text;
    label.frame = CGRectMake(100, 100, 100, 25);
    [self.view addSubview:label];

  • 一个lbale两行字,不同属性
    UILabel *label = [[UILabel alloc] init];
    // 设置属性文字
    NSString *text = @"你好\n哈哈哈";
    NSMutableAttributedString *attributedText = [[NSMutableAttributedString alloc] initWithString:text];
    [attributedText addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:10] range:NSMakeRange(0, text.length)];
    [attributedText addAttribute:NSFontAttributeName value:[UIFont boldSystemFontOfSize:13] range:NSMakeRange(3, 3)];
    label.attributedText = attributedText;
    // 其他设置
    label.numberOfLines = 0;
    label.textAlignment = NSTextAlignmentCenter;
    label.frame = CGRectMake(0, 0, 100, 40);
    [self.view addSubview:label];
    self.navigationItem.titleView = label;
  • 利用属性字符串,进行label的图文混排
  UILabel *label = [[UILabel alloc] init];
    label.frame = CGRectMake(100, 100, 200, 25);
    label.backgroundColor = [UIColor redColor];
    label.font = [UIFont systemFontOfSize:14];
    [self.view addSubview:label];

    // 图文混排
    NSMutableAttributedString *attributedText = [[NSMutableAttributedString alloc] init];
    // 1 - 你好
    NSAttributedString *first = [[NSAttributedString alloc] initWithString:@"你好"];
    [attributedText appendAttributedString:first];

    // 2 - 图片
    // 带有图片的附件对象
    NSTextAttachment *attachment = [[NSTextAttachment alloc] init];
    attachment.image = [UIImage imageNamed:@"header_cry_icon"];
    CGFloat lineH = label.font.lineHeight;
    attachment.bounds = CGRectMake(0, - ((label.xmg_height - lineH) * 0.5 - 1), lineH, lineH);
    // 将附件对象包装成一个属性文字
    NSAttributedString *second = [NSAttributedString attributedStringWithAttachment:attachment];
    [attributedText appendAttributedString:second];

    // 3 - 哈哈哈
    NSAttributedString *third = [[NSAttributedString alloc] initWithString:@"哈哈哈"];
    [attributedText appendAttributedString:third];

    label.attributedText = attributedText;
    
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,644评论 18 139
  • 国家电网公司企业标准(Q/GDW)- 面向对象的用电信息数据交换协议 - 报批稿:20170802 前言: 排版 ...
    庭说阅读 10,937评论 6 13
  • 字体属性设置示例:if(color ==nil) {color = [NSColor redColor];}NSF...
    袏扌戒指阅读 8,425评论 0 2
  • 我能做的就是安坐当下,倾听窗外嘈杂的声音掠过我的世界,等待灵感之神扔下的词句,我忠实地记录下来。其它我无需再做,也...
    缘在菩提阅读 477评论 0 0
  • 周凡在胡莉莉出院以后就全身心的投入到了第三部小说的创作中,他不分昼夜的把自己关在房间里,一天一顿饭,要外出顶多也就...
    赵猫鱼阅读 372评论 0 0