summaryrefslogtreecommitdiff
path: root/src/ui/ios/gf-ios-swift/HelpViewController.swift
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2015-11-11 10:56:22 +0000
committeraarne <aarne@chalmers.se>2015-11-11 10:56:22 +0000
commita4919b6c94b5298c5d820a12d9dd41ff005fa542 (patch)
tree7524be08512c49da3ea9c1f6202dbdf6a6ce8b79 /src/ui/ios/gf-ios-swift/HelpViewController.swift
parent6cb2526253162cfef76dcd690b1a5c51656e1f29 (diff)
moved old ios-swift files to the subdirectory src/ui/ios/old-swift
Diffstat (limited to 'src/ui/ios/gf-ios-swift/HelpViewController.swift')
-rw-r--r--src/ui/ios/gf-ios-swift/HelpViewController.swift24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/ui/ios/gf-ios-swift/HelpViewController.swift b/src/ui/ios/gf-ios-swift/HelpViewController.swift
deleted file mode 100644
index 7f924bcd4..000000000
--- a/src/ui/ios/gf-ios-swift/HelpViewController.swift
+++ /dev/null
@@ -1,24 +0,0 @@
-import UIKit
-
-// The HelpViewController only contains static text and a back button
-class HelpViewController: UIViewController {
-
- @IBOutlet weak var helpView: UIWebView!
-
- // Closes the view when the back button is blicked
- @IBAction func backToMain(sender: UIButton) {
- dismissViewControllerAnimated(true, completion: nil)
- }
-
- override func viewDidLoad() {
- super.viewDidLoad()
-
- // Sets the HTML for the UIWebView
- self.helpView.loadHTMLString("<html><body><h1>HTML goes here</h1></body></html>", baseURL: nil)
- }
-
- override func didReceiveMemoryWarning() {
- super.didReceiveMemoryWarning()
- }
-
-}