mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 14:24:59 +00:00
23 lines
830 B
Swift
23 lines
830 B
Swift
// Copyright © 2020 Australian Government All rights reserved.
|
|
|
|
import UIKit
|
|
|
|
extension UITextView {
|
|
func addLink(_ linkString: String, enclosedIn marker: String) {
|
|
guard let attributedText = attributedText else { return }
|
|
|
|
let mutableString = NSMutableAttributedString(attributedString: attributedText)
|
|
mutableString.addLink(enclosedIn: marker, urlString: linkString)
|
|
self.attributedText = mutableString
|
|
tintColor = UIColor.covidSafeColor
|
|
}
|
|
|
|
func parseHTMLLinks() {
|
|
guard let attributedText = attributedText else { return }
|
|
|
|
let mutableString = NSMutableAttributedString(attributedString: attributedText)
|
|
mutableString.parseHTMLLinks()
|
|
self.attributedText = mutableString
|
|
tintColor = UIColor.covidSafeColor
|
|
}
|
|
}
|