Guest User

Untitled

a guest
Dec 4th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. class LoginViewController: UIViewController {
  2.  
  3. var username: String?
  4. var password: String?
  5. var delegate: LoginActions?
  6.  
  7. public init(delegate: LoginActions) {
  8. self.delegate = delegate
  9. super.init(nibName: nil, bundle: nil)
  10. }
  11.  
  12. required public init?(coder aDecoder: NSCoder) {
  13. super.init(coder: aDecoder)
  14. }
  15. }
Add Comment
Please, Sign In to add comment