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

7 篇文章 0 订阅

需求:对 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 为对应效果即可。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值