iOS swift 带有attributeString的多行文本label
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的更多相关文章
- 使用Autolayout对多行文本Label进行布局,高度不准确的解决办法!
BUG描述: 今天公司的项目中发现了一个BUG,大概给大家描述一下,tabbleView有一个tableFooterView,这个footView中有一个Label,是多行显示文本,程序用的是Auto ...
- iOS - Swift 命令行输入输出
1.类输出 Swift 语言中类输出方法重: override var description: String{ return String(format: "%@, %@", s ...
- iOS Swift 模块练习/swift基础学习
SWIFT项目练习 SWIFT项目练习2 iOS Swift基础知识代码 推荐:Swift学习使用知识代码软件 0.swift中的宏定义(使用方法代替宏) 一.视图 +控件 1.UIImag ...
- 给iOS开发新手送点福利,简述文本属性Attributes的用法
给iOS开发新手送点福利,简述文本属性Attributes的用法 文本属性Attributes 1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSF ...
- sharepoint更新多行文本webparth
前台 <script> function Copy() { var value = document.getElementById("<%=BodyBox.ClientID ...
- 禁止多行文本框textarea拖拽
禁止多行文本框textarea拖拽: textarea { resize: none; } resize这个是用于元素缩放,它可以取以下几个值: none 默认值 both 允许水平方向及垂直方向缩放 ...
- NGUI 3.5教程(二)Label 标签 (Hello world)、多行文本
写在前面: 本文将创建NGUI的第一个样例.依照编程传统,第一个样例,就是做一个Hello world 显示出来.NGUI.我们用Label来实现 . 欢迎大家纠错.拍砖!原创非常辛苦,如有转 ...
- iOS swift的xcworkspace多项目管理(架构思想)
iOS swift的xcworkspace多项目管理(架构思想) 技术说明: 今天在这里分享 swift下的 xcworkspace多项目管理(架构思想),能为我们在开发中带来哪些便捷?能为我们对整 ...
- ios swift 实现饼状图进度条,swift环形进度条
ios swift 实现饼状图进度条 // // ProgressControl.swift // L02MyProgressControl // // Created by plter on 7/2 ...
随机推荐
- javascript for循环+异步请求导致请求顺序不一致
工作中遇到一个问题 for循环,再把循环出来的ID再进行二次请求 这就导致一个问题 请求结果返回顺序不一致 原因:异步请求会把回调事件放入微任务事件队列,宏任务执行完毕再执行微任务,具体参考事件队列机 ...
- Android 开发凉了吗!
昨天我拿了本<安卓开发大全>的书,把它放进了冰箱,你猜怎么样? 它凉了. 记得2013年的时候,安卓崛起,一夜之间遍地谈论安卓这个奇怪的机器人. 安卓受宠的原因,主要围绕着: 1 应用商城 ...
- linux mysql 数据库复制
一.主服务器配置 1.配置文件my.cnf的修改 [root@localhost mysql]# vim /etc/my.cnf #在[mysqld]中添加:server-id=1log_bin=ma ...
- python 虚拟环境安装与卸载
Ubuntu16.04 安装 卸载 pip原创Solarzhou 发布于2019-06-12 21:50:28 阅读数 2001 收藏展开 实验环境Ubuntu16.04:VMware15: 问题描述 ...
- ts--泛型
//泛型:软件工程中,我们不仅要创建一致的定义良好的API,同时也要考虑可重用性,组件不仅要能支持当前的数据类型,同时也能支持未来的数据类型 //泛型就是解决 类 接口 方法的复用性 以及对不特定 ...
- Java集合内容
Java的集合类定义在java.util包中,支持泛型,主要提供了3种集合类,包括List,Set和Map.Java集合使用统一的Iterator遍历. 1.List遍历 实现了Iterator接口的 ...
- ConcurrentHashMap(1.8)分析
在ConcurrentHashMap(1.8)中与HashMap非常相似,只不过它是线程安全的,在这里主要分析一下putVal()方法,看看与HashMap的区别. final V putVal(K ...
- Highlight List View Objects 突出显示列表视图对象
In this lesson, you will learn how to format data that satisfies the specified criteria. For this pu ...
- IS Kali: installed chiess messy code problem
apt-get install ttf-wqy-microhei ttf-wqy-zenhei xfonts-wqy init 6
- Android微信九宫格图片展示控件
版权声明:本文为xing_star原创文章,转载请注明出处! 本文同步自http://javaexception.com/archives/214 Android微信九宫格图片展示控件 半年前,公司产 ...