gpt4 book ai didi

ios - 为什么下划线样式不适用于 NSAttributedString?

转载 作者:行者123 更新时间:2023-12-04 14:53:38 33 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to use NSUnderlineStyle.PatternDot

(1 个回答)


4 个月前关闭。




我有以下代码尝试为标签的字符串加下划线。

let attributedString = NSMutableAttributedString(string: "Hello World!")
attributedString.addAttribute(NSAttributedString.Key.underlineStyle, value: NSUnderlineStyle.single, range: NSRange.init(location: 0, length: attributedString.length))
label.attributedText = attributedString
但是,在运行代码时,标签显示 Hello World!没有下划线。
我正在运行 Xcode 12.4,并使用 iOS 14.4 iPhone 12 Pro Max 模拟器。

最佳答案

这似乎是一个错误。将值从 NSUnderlineStyle.single 更改为至 1解决了这个问题。
最终代码如下所示。

let attributedString = NSMutableAttributedString(string: "Hello World!")
attributedString.addAttribute(NSAttributedString.Key.underlineStyle, value: 1, range: NSRange.init(location: 0, length: attributedString.length))
label.attributedText = attributedString

关于ios - 为什么下划线样式不适用于 NSAttributedString?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68593114/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com