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