mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 06:14:59 +00:00
22 lines
631 B
Swift
22 lines
631 B
Swift
// Copyright © 2020 Australian Government All rights reserved.
|
|
|
|
import UIKit
|
|
|
|
final class UploadDataHomeViewController: UIViewController {
|
|
|
|
@IBOutlet var messageTextView: UITextView!
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
setupMessageTextView()
|
|
}
|
|
|
|
private func setupMessageTextView() {
|
|
messageTextView.textContainer.lineFragmentPadding = 0.0
|
|
messageTextView.addLink(URLHelper.getPrivacyPolicyURL(), enclosedIn: "*")
|
|
}
|
|
|
|
@IBAction func onBackTapped(_ sender: UIButton) {
|
|
navigationController?.popViewController(animated: true)
|
|
}
|
|
}
|