mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-06 06:44:58 +00:00
15 lines
502 B
Swift
15 lines
502 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
|
||
|
}
|
||
|
}
|