Made Settings attributed string views selectable so that the links in them work

This commit is contained in:
Maurice Parker 2019-09-17 11:40:58 -05:00
parent abe10b8a24
commit cd9447abb4
1 changed files with 2 additions and 4 deletions

View File

@ -17,15 +17,13 @@ struct SettingsAttributedStringView: UIViewRepresentable {
textView.attributedText = string
textView.translatesAutoresizingMaskIntoConstraints = false
textView.isEditable = false
textView.adjustsFontForContentSizeCategory = true
textView.font = .preferredFont(forTextStyle: .body)
textView.textColor = UIColor.label
textView.backgroundColor = UIColor.secondarySystemGroupedBackground
textView.isEditable = false
textView.isSelectable = false
return textView
}