mobile-ios/CovidSafe/OnboardingStep1bViewController.swift

24 lines
584 B
Swift
Raw Normal View History

2020-05-08 07:49:14 +00: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 01:23:11 +00:00
super.viewDidLoad()
2020-05-08 07:49:14 +00:00
textView.textContainer.lineFragmentPadding = 0.0
textView.addLink(URLHelper.getHelpURL(), enclosedIn: "*")
}
}