-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResetPasswordController.swift
108 lines (93 loc) · 3.86 KB
/
ResetPasswordController.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
//
// ResetPasswordController.swift
// motion
//
// Created by judywu on 3/2/16.
// Copyright © 2016 CASPIR. All rights reserved.
//
import UIKit
class ResetPasswordController: UITableViewController, UITextFieldDelegate {
@IBOutlet weak var emailTextField: UITextField!
@IBOutlet weak var emailMessageLabel: UILabel!
@IBOutlet weak var resetButton: UIButton!
@IBAction func resetPassword(sender: UIButton) {
self.sendPassword()
}
@IBAction func cancel(sender: UIBarButtonItem) {
self.dismissViewControllerAnimated(true, completion: nil)
}
override func viewDidLoad() {
super.viewDidLoad()
self.setUpAppearance()
self.emailMessageLabel.alpha = 0
// Uncomment the following line to preserve selection between presentations
// self.clearsSelectionOnViewWillAppear = false
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem()
}
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
tableView.deselectRowAtIndexPath(indexPath, animated: true)
if indexPath.row == 0 {
self.emailTextField.becomeFirstResponder()
}
}
func setUpAppearance() {
let customizedColor = UIColor(red: 59.0/255.0, green: 147.0/255.0, blue: 144.0/255.0, alpha: 1.0)
self.emailTextField.textColor = UIColor.blackColor()
self.emailTextField.font = UIFont.boldSystemFontOfSize(17.0)
self.resetButton.backgroundColor = UIColor.clearColor()
self.resetButton.layer.cornerRadius = 5
self.resetButton.layer.borderWidth = 1
self.resetButton.layer.borderColor =
customizedColor.CGColor
}
func textFieldShouldReturn(textField: UITextField) -> Bool {
self.sendPassword()
return true
}
func isContentValid(var errorMessage: String) -> Bool {
var isContentValid: Bool = false
if (self.emailTextField.text?.characters.count) == 0 {
errorMessage = "Please enter your email address."
isContentValid = false
}else {
isContentValid = true
}
return isContentValid
}
func sendPassword() {
var error = "No error"
if self.isContentValid(error) {
if self.emailTextField.text!.isEmail {
var emailAddress: String = self.emailTextField.text!
UIView.animateWithDuration(1.0, animations: {() -> Void in
self.emailMessageLabel.text = NSLocalizedString("An email has been sent.", comment: "")
self.emailMessageLabel.alpha = 1
self.resetButton.alpha = 0
}, completion: {(finished: Bool) -> Void in
self.performSelector("dismiss", withObject: nil, afterDelay: 1.0)
})
}else {
UIView.animateWithDuration(0.2, animations: {
self.emailMessageLabel.text = NSLocalizedString("Please enter a valid email address", comment: "")
self.emailMessageLabel.alpha = 1
})
}
}else {
UIView.animateWithDuration(0.2, animations: {
self.emailMessageLabel.text = NSLocalizedString("Please enter a valid email address", comment: "")
self.emailMessageLabel.alpha = 1
})
}
}
func dismiss() -> Void {
self.dismissViewControllerAnimated(true, completion: nil)
}
}
extension String {
var isEmail: Bool {
let emailRegEx = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,20}"
let emailTest = NSPredicate(format:"SELF MATCHES %@", emailRegEx)
return emailTest.evaluateWithObject(self)
}
}