Swift: подчеркивание AttributedString другим цветом
Я пытаюсь дать другой цвет для подчеркнутого текста в AttributedString. как на этом примере.
Но результат с этим фрагментом кода:
var attributedString = try AttributedString(markdown: self)
if let rangeWord = self.slice(from: "[", to: "]") {
let range = attributedString.range(of: rangeWord)!
attributedString[range].underlineStyle = .single
attributedString[range].foregroundColor = .white
attributedString[range].underlineColor = .green
}
Это не то, что ожидается
Есть ли обходной путь?
2 ответа
Попробуйте использовать
let labelString = "your label"
let textColor: UIColor = .black
let underLineColor: UIColor = .green
let underLineStyle = NSUnderlineStyle.single.rawValue
let labelAtributes:[NSAttributedString.Key : Any] = [
NSAttributedString.Key.foregroundColor: textColor,
NSAttributedString.Key.underlineStyle: underLineStyle,
NSAttributedString.Key.underlineColor: underLineColor
]
let underlineAttributedString = NSAttributedString(string: labelString,
attributes: labelAtributes)
label.attributedText = underlineAttributedString
Ключевым моментом является использованиеuiKit
объем.
var attributedString = try AttributedString(markdown: self)
if let rangeWord = self.slice(from: "[", to: "]") {
let range = attributedString.range(of: rangeWord)!
attributedString[range].foregroundColor = .white
// notice the "uiKit" addition
attributedString[range].uiKit.underlineColor = .green
attributedString[range].uiKit.underlineStyle = .single
}