mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-06-05 12:05:18 +00:00
COVIDSafe code from version 2.9
This commit is contained in:
parent
166f0838ed
commit
ab7071cfd8
19 changed files with 953 additions and 796 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue