Как изменить цвет текста гиперссылки в SwiftUI
Я пытаюсь изменить цвет шрифта гиперссылки по умолчанию в заданной строке уценки с помощью SwiftUI. Что-то эквивалентное
txtString.linkTextAttributes = [ .foregroundColor: UIColor.red ]
УИКит. Вот мой код:
import SwiftUI
struct TextViewAttributedString: View {
var markdownString: String
var body: some View {
Text(convertIntoAttributedString(markdownString:markdownString))
}
private func convertIntoAttributedString(markdownString: String) -> AttributedString {
guard var attributedString = try? AttributedString(
markdown: markdownString,
options: AttributedString.MarkdownParsingOptions(allowsExtendedAttributes: true,
interpretedSyntax: .inlineOnlyPreservingWhitespace))
else {
return AttributedString(markdownString)
}
attributedString.font = .custom("Times New Roman", size: 16, relativeTo: .body)
let runs = attributedString.runs
for run in runs {
let range = run.range
if let textStyle = run .inlinePresentationIntent {
if textStyle.contains(.stronglyEmphasized) { // .stronglyEmphasized is available
// change foreground color of bold text
attributedString[range].foregroundColor = .green
}
if textStyle.contains(.linkTextAttributes) { // compiler error since .linkTextAttributes not available
// change color here but .linkTextAttributes is not available in inlinePresentationIntent
// Any other way to change the hyperlink color?
}
}
}
return attributedString
}
}
Пример представления, где используется AttributedString
import SwiftUI
struct AttributedStringView: View {
let text: String = "**Bold** regular and _italic_ \nnewline\n[hyperlink](www.google.com)"
var body: some View {
TextViewAttributedString(markdownString: text)
}
}
struct AttributedStringView_Previews: PreviewProvider {
static var previews: some View {
AttributedStringView()
}
}
Результат: экран результатов
Справочные документы: https://developer.apple.com/documentation/foundation/attributedstringhttps://developer.apple.com/videos/play/wwdc2021/10109/
3 ответа
Самым простым решением для меня было:
Text(.init("some text **[google.com](https://google.com)**"))
.accentColor(.red)
if run.link != nil {
// change foreground color of link
attributedString[range].foregroundColor = .orange
}
Мне пришлось заменить AttributeContainer.
if run.link != nil {
var container = AttributeContainer()
container.foregroundColor = .red
attributedString[range].setAttributes(container)
}