iOS - Swift UILabel 实现部分文字添加下滑线

需求:对 UILabel 的文本中部分文字标记下划线

实现:对于 UILabel 文本设置样式的话,我们可以直接创建 NSMutableAttributedString 对象,然后使用 addAttribute 对它添加一些样式,最后赋值给 UILabel 的 attributedText 属性即可。

示例:

let label: UILabel = UILabel()
let helloWorld: String = "Hello World"
let helloWorldAttrStr: NSMutableAttributedString = NSMutableAttributedString(string: helloWorld)
let range: NSRange = NSRange(location: 0, length: helloWorld.count)

helloWorldAttrStr.addAttribute(NSAttributedString.Key.underlineStyle, value: 1, range: range)

label.attributedText = helloWorldAttrStr

如果要对部分的文本添加下划线,可以参考 iOS - Swift 实现字符串查找子字符串的位置 - sims - 博客园 (cnblogs.com) 获取到子字符串的位置,如下:

let label: UILabel = UILabel()
let markStr: String = "Wo"
let helloWorld: String = "Hello World"
let helloWorldAttrStr: NSMutableAttributedString = NSMutableAttributedString(string: helloWorld)
let markStrRange: Range = helloWorld.range(of: markStr)!
let location = helloWorld.distance(from: helloWorld.startIndex, to: markStrRange.lowerBound)
let range: NSRange = NSRange(location: location, length: markStr.count)

helloWorldAttrStr.addAttribute(NSAttributedString.Key.underlineStyle, value: 1, range: range)

label.attributedText = helloWorldAttrStr

上面的代码是实现下划线的效果,其它效果可以替换  NSAttributedString.Key.underlineStyle 为对应效果即可。

你可能感兴趣的:(iOS,Swift,ios,swift)