iOS - NSAttributedString

NSAttributedString 初始化

NSAttributedString.init(string: "TEST", attributes: [:])

attributes 类型为 [NSAttributedStringKey: Any]
下面开始介绍 NSAttributeStringKey 每一个的作用

如果 NSAttributeStringKey 对应的类型传错参数,文本会为透明色

常用

NSAttributedString.Key.font 字体
NSAttributedString.Key.foregroundColor 字体颜色

NSAttributedString.Key.backgroundColor

文本的背景颜色: UIColor

self.textView.attributedText = NSAttributedString.init(string: "TEST", attributes: [
    NSAttributedString.Key.backgroundColor: UIColor.gray
])
NSAttributedString.Key.backgroundColor: UIColor.gray

NSAttributedString.Key.ligature

表示某些连在一起的字符: NSNumber,默认 0 不连体,1为连体

只有某些字符且某些字体才会发生连体

字体为 PingFangSC-Medium 和 PingFangSC-Semibold 等,会发生连体

self.textView.attributedText = NSAttributedString.init(string: "fiflfi", attributes: [
    NSAttributedString.Key.ligature: 1,
    NSAttributedString.Key.font: UIFont.init(name: "PingFangSC-Medium", size: 17)!
])
NSAttributedString.Key.ligature: 1

NSAttributedString.Key.kern

调整字横向间距

self.textView.attributedText = NSAttributedString.init(string: "TEST TEST", attributes: [
    NSAttributedString.Key.kern: 10
])
NSAttributedString.Key.kern: 10

NSAttributedString.Key.strikethroughStyle

新增删除线: NSNumber

// NSNumber 为 NSUnderlineStyle 枚举定义的
NSUnderlineStyleNone: 0 //  无删除线
NSUnderlineStyleSingle: 1 // 单条删除线
NSUnderlineStyleThick: 2 // 粗一点的删除线
NSUnderlineStyleDouble: 9 // 两条删除线

/// 删除线颜色
NSAttributedString.Key.strikethroughColor: UIColor.black
NSUnderlineStyleSingle

NSAttributedString.Key.underlineStyle

下划线: NSNumber

// NSNumber 为 NSUnderlineStyle 枚举定义的
NSUnderlineStyleNone: 0 //  无删除线
NSUnderlineStyleSingle: 1 // 单条删除线
NSUnderlineStyleThick: 2 // 粗一点的删除线
NSUnderlineStyleDouble: 9 // 两条删除线

self.textView.attributedText = NSAttributedString.init(string: "TEST TEST", attributes: [
    NSAttributedString.Key.underlineStyle: 9,
])

/// 下划线颜色
NSAttributedString.Key.underlineColor: UIColor.black
NSAttributedString.Key.underlineStyle: 9

NSAttributedString.Key.strokeWidth

文字描边: NSNumber

self.textView.attributedText = NSAttributedString.init(string: "TEST TEST", attributes: [
    NSAttributedString.Key.strokeWidth: 2
])

/// 文字描边颜色
NSAttributedString.Key.strokeColor: UIColor.black
NSAttributedString.Key.strokeWidth: 2

NSAttributedString.Key.shadow

文字阴影: NSShadow

let shadow = NSShadow.init()
shadow.shadowColor = UIColor.red
shadow.shadowOffset = CGSize.init(width: 0, height: 2)
shadow.shadowBlurRadius = 5

self.textView.attributedText = NSAttributedString.init(string: "TEST TEST", attributes: [
    NSAttributedString.Key.shadow: shadow
])
NSAttributedString.Key.shadow

NSAttributedString.Key.textEffect

图版印刷效果: NSAttributedString.TextEffectStyle,目前只有这一个效果

self.textView.attributedText = NSAttributedString.init(string: "TEST TEST", attributes: [
    NSAttributedString.Key.textEffect: NSAttributedString.TextEffectStyle.letterpressStyle.rawValue
])
NSAttributedString.Key.textEffect

NSAttributedString.Key.baselineOffset

文字基线的偏移量: NSNumber

NSAttributedString.Key.writingDirection

文字书写方向: NSNumber 数组

// NSNumber 为 NSWritingDirection 枚举定义的
NSUnderlineStyleNone: 

NSAttributedString.Key.link

添加超链接,点击文本可跳转浏览器打开 URL: URL

self.textView.attributedText = NSAttributedString.init(string: "TEST NONE", attributes: [
    NSAttributedString.Key.link: URL.init(string: "https://www.baidu.com")!
])
NSAttributedString.Key.link

NSAttributedString.Key.obliqueness

文字倾斜: NSNumber

self.textView.attributedText = NSAttributedString.init(string: "TEST TEST", attributes: [
    NSAttributedString.Key.obliqueness: -1 // < 0 向左,> 0 向右
])
NSAttributedString.Key.obliqueness: -1

NSAttributedString.Key.expansion

文字的压缩和拉伸: NSNumber

self.textView.attributedText = NSAttributedString.init(string: "TEST TEST", attributes: [
    NSAttributedString.Key.expansion: 1 // < 0 压缩,> 0 拉伸
])

NSTextAttachment

用于图文混编

let attachment = NSTextAttachment.init()
attachment.image = UIImage.init(named: "icon_bluetooth_20")!
/// 可调整图片 y 坐标, > 0 往上移动,< 0 往下移动
attachment.bounds = CGRect.init(x: 0, y: -2, width: 17, height: 17)
let mutableAttrString = NSMutableAttributedString.init(attachment: attachment)
mutableAttrString.append(NSAttributedString.init(string: "TEST TEST"))
self.textView.attributedText = mutableAttrString
NSTextAttachment

NSAttributedString.Key.paragraphStyle

用于编辑段落属性: NSParagraphStyle

let paragraphStyle = NSMutableParagraphStyle.init()
paragraphStyle.lineSpacing = 10 // 行间距
paragraphStyle.paragraphSpacing = 10 // 段间距
paragraphStyle.alignment = .left // 两端对齐方式
paragraphStyle.firstLineHeadIndent = 10 // 首行缩进
paragraphStyle.headIndent = 10 // 整体缩进,首行除外
paragraphStyle.tailIndent =  -30 // 尾部缩进, < 0 abs(tailIndent) 尾部距离右边的距离,> 0 abs(tailIndent) 尾部距离左边的距离

/*

NSLineBreakMode
例句: Happiness is a state of mind.

.byWordWrapping = 0,         // 默认,单词换行,Happiness is a state\n of mind
.byCharWrapping,        // 字符换行,Happiness is a state o\nf mind
.byClipping,        // 直接剪掉,Happiness is a state
.byTruncatingHead,    // "...state of mind"
.byTruncatingTail,    // "Happiness is a..."
.byTruncatingMiddle    //  "Happiness is...of mind"

*/
paragraphStyle.lineBreakMode = .byCharWrapping // 断行方式,文本一行不够展示如何处理
paragraphStyle.minimumLineHeight = 10 // 最小行高
paragraphStyle.maximumLineHeight = 10 // 最大行高
paragraphStyle.baseWritingDirection = .rightToLeft // 书写方向
paragraphStyle.lineHeightMultiple = 1.7 // 行高系数 > 0,在最大行高和最小行高约束之前进行计算
paragraphStyle.paragraphSpacingBefore = 10 // 上一段断末和本段段首之间的距离
paragraphStyle.hyphenationFactor =  // 自动断字,hyphen(短横 - )将单词断开, 例如 impeachment 断为 im-peachment

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

推荐阅读更多精彩内容