2020-05-08 17:49:14 +10:00
|
|
|
//
|
2020-12-19 16:13:44 +11:00
|
|
|
// HowItWorksViewController.swift
|
2020-05-08 17:49:14 +10:00
|
|
|
// CovidSafe
|
|
|
|
//
|
|
|
|
// Copyright © 2020 Australian Government. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
2020-12-19 16:13:44 +11:00
|
|
|
class HowItWorksViewController: UIViewController {
|
2020-05-08 17:49:14 +10:00
|
|
|
|
|
|
|
@IBOutlet weak var textView: UITextView!
|
|
|
|
|
|
|
|
@IBAction func onBackTapped(_ sender: UIButton) {
|
|
|
|
self.navigationController?.popViewController(animated: true)
|
|
|
|
}
|
|
|
|
|
|
|
|
override func viewDidLoad() {
|
2020-09-14 11:23:11 +10:00
|
|
|
super.viewDidLoad()
|
2020-05-08 17:49:14 +10:00
|
|
|
textView.textContainer.lineFragmentPadding = 0.0
|
|
|
|
textView.addLink(URLHelper.getHelpURL(), enclosedIn: "*")
|
|
|
|
}
|
|
|
|
}
|