Last active
July 22, 2017 08:51
-
-
Save PaulRBerg/c301757f9e16b48e2791c84320ad923c to your computer and use it in GitHub Desktop.
AdPacer - APLoginViewController
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class APLoginViewController: UIViewController { | |
/** | |
* The views which let the user type the email and the password. | |
*/ | |
@IBOutlet weak var emailTextField: UITextField! | |
@IBOutlet weak var passwordTextField: UITextField! | |
/** | |
* Override 'viewDidLoad'. | |
*/ | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
/** | |
* @located in APLoginTextFieldController.swift | |
*/ | |
appendTextField() | |
} | |
/** | |
* Override 'viewWillAppear'. | |
*/ | |
override func viewWillAppear(_ animated: Bool) { | |
super.viewWillAppear(animated) | |
} | |
/** | |
* Override 'didReceiveMemoryWarning'. | |
*/ | |
override func didReceiveMemoryWarning() { | |
super.didReceiveMemoryWarning() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@PaulRBerg: I think functions like
didReceiveMemoryWarning
andviewWillAppear
can be removed since they are just calling their super classes.