class AttributeStringGenerator {

var attributeString: NSMutableAttributedString!

var lineSpacing: CGFloat = 2

init() {

attributeString = NSMutableAttributedString()

}

func reset() {

attributeString = NSMutableAttributedString()

}

/// 添加空行

func addEmptyLine(height: CGFloat = 12) {

let font = UIFont.systemFont(ofSize: height)

let attr = NSAttributedString(string: "\n", attributes:  [NSAttributedString.Key.font:font])

attributeString.append(attr)

}

/// 加一行文字

///

/// - Parameters:

///   - string: 要加的文字

///   - alignment: 对齐方式

///   - color: 颜色

///   - font: 字体

///   - isLastLine: 是否最后一行,最后一行不加换行

func addLine(string: String, alignment: NSTextAlignment, color: UIColor = UIColor.white, font: UIFont = UIFont.systemFont(ofSize: 12), isLastLine: Bool = false) {

let para = NSMutableParagraphStyle()

para.alignment = alignment

para.lineSpacing = lineSpacing

//如果是最后一行,不需要加 \n

var s = string

if !isLastLine {

s += "\n"

}

let attr = NSAttributedString(string: s, attributes:

[NSAttributedString.Key.paragraphStyle:para,

NSAttributedString.Key.foregroundColor:color,

NSAttributedString.Key.font:font])

attributeString.append(attr)

}

/// 添加文字居中带图标的行

///

/// - Parameters:

///   - icon: 图标

///   - string: 文字

///   - size: 图标大小

///   - color: 文字颜色

///   - font: 字体

///   - isLastLine: 是否最后一行

func addLineWith(icon: UIImage,string: String, size: CGSize, color: UIColor = UIColor.white, font: UIFont = UIFont.systemFont(ofSize: 18), isLastLine: Bool = true) {

let para = NSMutableParagraphStyle()

para.alignment = .center

para.lineSpacing = lineSpacing

//如果是最后一行,不需要加 \n

var s = string

if !isLastLine {

s += "\n"

}

let att = NSTextAttachment(data: nil, ofType: nil)

att.image = icon

att.bounds = CGRect(x: 0, y: -font.pointSize/10, width: size.width, height: size.height)

let attr = NSMutableAttributedString(attributedString: NSAttributedString(attachment: att))

attr.append(NSMutableAttributedString(string: " " + s, attributes:

[NSAttributedString.Key.foregroundColor:color,

NSAttributedString.Key.font:font]))

attr.addAttribute(NSAttributedString.Key.paragraphStyle, value: para, range: NSMakeRange(0, attr.length))

attributeString.append(attr)

}

/// 添加一行文字,分左中右三部分, 左边的左对齐, 中间的右对齐,可以设置通过某符号对齐,比如 ":", 右边的可以自行设置对齐方式

///

/// - Parameters:

///   - leftString: 左边的文字

///   - leftColor: 左边文字的颜色

///   - leftFont: 左边文字字体

///   - centerString: 中间的文字

///   - centerPosition: 中间文字的位置

///   - centerColor: 中间文字颜色

///   - centerFont: 中间文字字体

///   - alignString: 中间文字对齐的符号

///   - rightString: 右边的文字

///   - rightPosition: 右边文字的位置

///   - rightColor: 右边文字颜色

///   - rightFont: 右边文字字体

///   - alignment: 右边文字对齐方式

func addLine(leftString: String?, leftColor: UIColor = UIColor.white, leftFont: UIFont = UIFont.systemFont(ofSize: 12),

centerString: String? = nil,centerPosition:CGFloat = 0, centerColor: UIColor = UIColor.white, centerFont: UIFont = UIFont.systemFont(ofSize: 12), alignString: String = "",

rightString: String?,rightPosition:CGFloat = 0, rightColor: UIColor = UIColor.white, rightFont: UIFont = UIFont.systemFont(ofSize: 12), alignment: NSTextAlignment = .right,

isLastLine: Bool = false) {

var string = ""

var leftRange: NSRange

var centerRange: NSRange

var rightRange: NSRange

if let left = leftString {

string = string + left + "\t"

//特殊字符.count算出的长度不对,需要改成 lengthOfBytes(using: String.Encoding.unicode)/2

leftRange = NSMakeRange(0, string.lengthOfBytes(using: String.Encoding.unicode)/2)

} else {

string += "\t"

leftRange = NSMakeRange(0, 1)

}

if let center = centerString {

string = string + center + "\t"

centerRange = NSMakeRange(leftRange.length, center.lengthOfBytes(using: String.Encoding.unicode)/2 + 1)

} else {

//string += "\t"

centerRange = NSMakeRange(leftRange.length, 0)

}

if let right = rightString {

if isLastLine {

string = string + right

rightRange = NSMakeRange(leftRange.length + centerRange.length, right.lengthOfBytes(using: String.Encoding.unicode)/2)

} else {

string = string + right + "\n"

rightRange = NSMakeRange(leftRange.length + centerRange.length, right.lengthOfBytes(using: String.Encoding.unicode)/2 + 1)

}

} else {

if isLastLine {

string += "\n"

rightRange = NSMakeRange(leftRange.length + centerRange.length, 1)

} else {

rightRange = NSMakeRange(leftRange.length + centerRange.length, 0)

}

}

let para = NSMutableParagraphStyle()

para.lineSpacing = lineSpacing

let align = NSCharacterSet(charactersIn: alignString)

let t1 = NSTextTab(textAlignment: .right, location: centerPosition, options: [NSTextTab.OptionKey.columnTerminators:align])

let t2 = NSTextTab(textAlignment: alignment, location: rightPosition, options: [:])

para.tabStops = [t1,t2]

if centerString == nil {

para.tabStops = [t2]

}

let attr = NSMutableAttributedString(string: string)

attr.addAttribute(NSAttributedString.Key.paragraphStyle, value: para, range: NSMakeRange(0, string.count))

attr.addAttributes([NSAttributedString.Key.foregroundColor:leftColor, NSAttributedString.Key.font:leftFont], range: leftRange)

attr.addAttributes([NSAttributedString.Key.foregroundColor:centerColor, NSAttributedString.Key.font:centerFont], range: centerRange)

attr.addAttributes([NSAttributedString.Key.foregroundColor:rightColor, NSAttributedString.Key.font:rightFont], range: rightRange)

attributeString.append(attr)

}

func getHeight(width:CGFloat) -> CGFloat {

let options : NSStringDrawingOptions = [.usesLineFragmentOrigin, .usesFontLeading]

let bounds = attributeString.boundingRect(with: CGSize(width: width, height: 99999), options: options, context: nil)

return bounds.height

}

}

最后将attributeString赋值给label

iOS swift 带有attributeString的多行文本label的更多相关文章

  1. 使用Autolayout对多行文本Label进行布局,高度不准确的解决办法!

    BUG描述: 今天公司的项目中发现了一个BUG,大概给大家描述一下,tabbleView有一个tableFooterView,这个footView中有一个Label,是多行显示文本,程序用的是Auto ...

  2. iOS - Swift 命令行输入输出

    1.类输出 Swift 语言中类输出方法重: override var description: String{ return String(format: "%@, %@", s ...

  3. iOS Swift 模块练习/swift基础学习

    SWIFT项目练习     SWIFT项目练习2 iOS Swift基础知识代码 推荐:Swift学习使用知识代码软件 0.swift中的宏定义(使用方法代替宏) 一.视图  +控件 1.UIImag ...

  4. 给iOS开发新手送点福利,简述文本属性Attributes的用法

    给iOS开发新手送点福利,简述文本属性Attributes的用法   文本属性Attributes 1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSF ...

  5. sharepoint更新多行文本webparth

    前台 <script> function Copy() { var value = document.getElementById("<%=BodyBox.ClientID ...

  6. 禁止多行文本框textarea拖拽

    禁止多行文本框textarea拖拽: textarea { resize: none; } resize这个是用于元素缩放,它可以取以下几个值: none 默认值 both 允许水平方向及垂直方向缩放 ...

  7. NGUI 3.5教程(二)Label 标签 (Hello world)、多行文本

    写在前面:     本文将创建NGUI的第一个样例.依照编程传统,第一个样例,就是做一个Hello world 显示出来.NGUI.我们用Label来实现 . 欢迎大家纠错.拍砖!原创非常辛苦,如有转 ...

  8. iOS swift的xcworkspace多项目管理(架构思想)

    iOS  swift的xcworkspace多项目管理(架构思想) 技术说明: 今天在这里分享 swift下的 xcworkspace多项目管理(架构思想),能为我们在开发中带来哪些便捷?能为我们对整 ...

  9. ios swift 实现饼状图进度条,swift环形进度条

    ios swift 实现饼状图进度条 // // ProgressControl.swift // L02MyProgressControl // // Created by plter on 7/2 ...

随机推荐

  1. 初识PMP PMBOK初解(指南第一章引论)

    引论 1.1指南概述和目的 普遍认可:大多数时候是适用于大多数项目,价值和有效性已获得一致认可. 良好实践:知识.技能.工具和技术能够达到预期的商业价值和成果,提高很多项目成功的可能性. 确定过程.输 ...

  2. OpenResty + ModSecurity + OWASP CRS

    本篇将介绍如何使用OpenResty和ModSecurity 来构建自己的WAF,安装过程整体与Nginx是类似的,但也有些区别,在文中会特别指出,本篇算是用openresty对前面两篇nginx和c ...

  3. IT兄弟连 HTML5教程 DIV+CSS网页标准化布局 小结及习题

    小结 DIV+CSS布局页面的优势:表现和内容相分离.代码简洁,提高页面浏览速度.易于维护和改版.提高搜索引擎对网页的索引效率.每个HTML元素都可以看作一个区块,类似于装了东西的盒子,称为盒子模式. ...

  4. vue中Enter触发登录事件和javascript中Enter触发点击事件

    created(){ window.addEventListener('keydown', this.handleKeyDown, true)//开启监听键盘按下事件 } 在methods中当keyC ...

  5. C# -- 使用缓冲区进行文件下载操作

    C# -- 使用缓冲区进行文件下载操作 1. 为避免下载超大文件占用内存资源,文件下载使用缓冲区,一点一点读取文件资源. string str0 = @"ftp://localhost:21 ...

  6. [转]为何选择 Flink

    本文转自:https://www.ituring.com.cn/book/tupubarticle/23229 第 1 章 为何选择 Flink 人们对某件事的正确理解往往来自基于有效论据的结论.要获 ...

  7. Flutter安装入门教程

    ### 前言 Flutter是谷歌的移动UI框架,可以快速在iOS和Android上构建高质量的原生用户界面. Flutter可以与现有的代码一起工作.在全世界,Flutter正在被越来越多的开发者和 ...

  8. 编辑器之神vim的一些常用快捷键整理

    yy:复制 光标所在的这一行 4yy:复制 光标所在行开始向下的4行 p:粘贴 dd:剪切(删除) 光标所在的这一行 4dd:剪切(删除) 光标所在行向下的4行 D:从当前的光标开始向后剪切,一直到行 ...

  9. 使用ClickOnce发布Windows应用程序

    前言 因本人工作需要,在一名非常非常好的老师的指导下,入门了C#,再次向老师表示感谢. 本人平时经常遇到的业务就是将数据下发给各部门,并让各部门再上报,此过程中经常会遇到数据格式不正确,数据错误等诸多 ...

  10. 观察者模式Vs发布订阅模式

    1)观察者模式 观察者模式通俗的讲就是我们平事件调用(click/change等等) 大家先看这个图片.我们被观察者Subject(监听某个事件)发生改变时,观察者Observer监听到没改变做出调整 ...