COVIDSafe code from version 2.9

This commit is contained in:
covidsafe-support 2021-12-10 18:55:39 +11:00
parent 166f0838ed
commit ab7071cfd8
19 changed files with 953 additions and 796 deletions

View file

@ -9,6 +9,19 @@ import UIKit
class RegistrationConsentViewController: UIViewController {
@IBOutlet weak var introLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
guard let attributedString = introLabel.attributedText else {
return
}
let mutableString = NSMutableAttributedString(attributedString: attributedString)
mutableString.parseItalicTags()
introLabel.attributedText = mutableString
}
@IBAction func onBackTapped(_ sender: UIButton) {
self.navigationController?.popViewController(animated: true)
}