Ensure TableViewHeaderFooterView has a themed default text color and font style (#2076)

* Ensure that TableViewHeaderFooterView has a themed default text color for attributedStrings

* Updates to apply default fluent style

* Remove unneeded cast
This commit is contained in:
Des Marks 2024-07-25 09:53:16 -07:00 коммит произвёл GitHub
Родитель 30b8885f5d
Коммит 584aeed1dd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 19 добавлений и 0 удалений

Просмотреть файл

@ -456,6 +456,8 @@ open class TableViewHeaderFooterView: UITableViewHeaderFooterView, TokenizedCont
let titleFont = tokenSet[.textFont].uiFont
if !isUsingAttributedTitle {
titleView.font = titleFont
} else {
updateAttributedTitleWithDefaultFluentThemeAttributes()
}
// offset text container to center its content
@ -482,10 +484,27 @@ open class TableViewHeaderFooterView: UITableViewHeaderFooterView, TokenizedCont
if !isUsingAttributedTitle {
titleView.textColor = tokenSet[.textColor].uiColor
titleView.font = tokenSet[.textFont].uiFont
} else {
updateAttributedTitleWithDefaultFluentThemeAttributes()
}
titleView.linkColor = tokenSet[.linkTextColor].uiColor
}
private func updateAttributedTitleWithDefaultFluentThemeAttributes() {
if let attributedTitle = self.attributedTitle {
/// Create an attributed string with the default fluent text color and font for the given style
let attributedTitleWithFluentTheme = NSMutableAttributedString(string: attributedTitle.string, attributes: [NSAttributedString.Key.foregroundColor: tokenSet[.textColor].uiColor, NSAttributedString.Key.font: tokenSet[.textFont].uiFont])
/// Iterate over the attributes set by the consumer and apply them to our attributed string
attributedTitle.enumerateAttributes(in: NSRange(location: 0, length: attributedTitle.length)) { attributes, range, _ in
attributedTitleWithFluentTheme.addAttributes(attributes, range: range)
}
/// Update the `titleView` attributed string
titleView.attributedText = attributedTitleWithFluentTheme
}
}
private func updateLeadingViewColor() {
leadingView?.tintColor = tokenSet[.leadingViewColor].uiColor
}