02. Attributed Strings

Attributed string objects manage character strings and associated sets of attributes (for example, font and kerning) that apply to individual characters or ranges of characters in the string. The classes NSAttributedString and NSMutableAttributedString declare the programmatic interface for read-only attributed strings and modifiable attributed strings, respectively. The Foundation Kit defines the basic functionality, while additional Objective-C methods are defined in the Application Kit. The Application Kit also uses a subclass of NSMutableAttributedString, called NSTextStorage, to provide the storage for the extended text-handling system (see Text System Storage Layer Overview).

  • 归因字符串对象管理字符串和相关的属性集(例如,字体和字距调整),这些属性适用于字符串中的单个字符或字符范围。 NSAttributedString和NSMutableAttributedString类分别为只读属性字符串和可修改的属性字符串声明编程接口。 Foundation Kit定义了基本功能,而Application Kit中定义了其他Objective-C方法。 Application Kit还使用NSMutableAttributedString的子类(称为NSTextStorage)为扩展文本处理系统提供存储(请参阅文本系统存储层概述)。

NSAttributedString and NSMutableAttributedString are toll-free bridged to their Core Foundation counterparts, CFAttributedString and CFMutableAttributedString respectively. This means that a Foundation attributed string is interchangeable in function or method calls with the corresponding bridged Core Foundation type. Therefore, in a method where you see an NSMutableAttributedString * parameter, you can pass in a variable of type CFMutableAttributedStringRef, and in a function where you see a CFAttributedStringRef parameter, you can pass in an instance of NSAttributedString (or NSMutableAttributedString).

  • NSAttributedString和NSMutableAttributedString分别免费桥接到他们的Core Foundation对应物,CFAttributedString和CFMutableAttributedString。 这意味着Foundation属性字符串在函数或方法调用中可以与相应的桥接Core Foundation类型互换。 因此,在您看到NSMutableAttributedString *参数的方法中,您可以传入CFMutableAttributedStringRef类型的变量,并且在您看到CFAttributedStringRef参数的函数中,您可以传入NSAttributedString(或NSMutableAttributedString)的实例。

NSAttributedString is not a subclass of NSString. It contains an NSString object to which it applies attributes. This protects users of attributed strings from ambiguities caused by the semantic differences between simple and attributed strings. For example, equality can’t be simply defined between an NSString and an attributed string. The attributed string classes adopt the NSCopying and NSMutableCopying protocols, making it convenient to convert an attributed string from one type to the other.

  • NSAttributedString不是NSString的子类。 它包含一个应用属性的NSString对象。 这可以保护属性字符串的用户免受由简单字符串和属性字符串之间的语义差异引起的歧义。 例如,不能在NSString和属性字符串之间简单地定义相等性。 属性字符串类采用NSCopying和NSMutableCopying协议,可以方便地将属性字符串从一种类型转换为另一种类型。

NSAttributedString and NSMutableAttributedString add a number of features to the basic content storage of NSString:
NSAttributedString和NSMutableAttributedString为NSString的基本内容存储添加了许多功能:

  • Association of arbitrary, programmer-defined attributes with ranges of characters.

    • 任意,程序员定义的属性与字符范围的关联。
  • Preservation of attribute-to-character mapping after changes (NSMutableAttributedString).

    • 更改后保留属性到字符的映射(NSMutableAttributedString)。
  • Support for RTF, including file attachments and graphics.

    • 支持RTF,包括文件附件和图形。
  • Drawing in NSView objects (note that the Application Kit adds drawing methods to NSString as well)

    • 在NSView对象中绘图(请注意,Application Kit也将绘图方法添加到NSString中)
  • Linguistic unit (word) and line calculation.

    • 语言单位(单词)和行计算。

An attributed string identifies attributes by name, storing their values as opaque ids in an NSDictionary object. For example, the text font is stored as an NSFont object under the name given by NSFontAttributeName. You can associate any object value, by any name, with a given range of characters in the attributed string.

  • 属性字符串按名称标识属性,将其值作为不透明的id存储在NSDictionary对象中。 例如,文本字体以NSFontAttributeName给出的名称存储为NSFont对象。 您可以将任何对象值(通过任何名称)与属性字符串中给定的字符范围相关联。

A mutable attributed string keeps track of the attribute mapping as characters are added to and deleted from it and as attributes are changed. It allows you to group batches of edits with the beginEditing and endEditing methods, and to consolidate changes to the attribute-to-character mapping with the fix... methods.

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

推荐阅读更多精彩内容