-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUpViewController.swift
More file actions
207 lines (155 loc) · 7.24 KB
/
SignUpViewController.swift
File metadata and controls
207 lines (155 loc) · 7.24 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
//
// SIgnUpViewController.swift
// NoteSwap
//
// Created by Nick Dugal on 2/01/16.
// Copyright © 2016 Nick Dugal. All rights reserved.
//
import UIKit
import Parse
import ParseUI
class SignUpViewController: UIViewController, UITextFieldDelegate {
@IBOutlet weak var passwordField: UITextField!
@IBOutlet weak var usernameField: UITextField!
@IBOutlet weak var emailField: UITextField!
@IBOutlet weak var phoneField: UITextField!
@IBOutlet weak var signUpButton: UIButton!
@IBAction func cancelButton(sender: UIButton) {
self.performSegueWithIdentifier("backToLogin", sender: self)
}
var picker: UIPickerView = UIPickerView()
let activeArray = ["Pledge", "Active"]
var schoolArray = ["LSU","Ull", "UGA", "SouthEastern"]
var collegePicked = (0, "")
var activityIndicator: UIActivityIndicatorView = UIActivityIndicatorView(frame: CGRectMake(0, 0, 150, 150)) as UIActivityIndicatorView
override func viewDidLoad() {
super.viewDidLoad()
self.hideKeyboardWhenTappedAround()
self.emailField.becomeFirstResponder()
setup()
self.activityIndicator.center = self.view.center
self.activityIndicator.hidesWhenStopped = true
self.activityIndicator.activityIndicatorViewStyle = UIActivityIndicatorViewStyle.Gray
view.addSubview(self.activityIndicator)
}
func setup() {
emailField.delegate = self
usernameField.delegate = self
passwordField.delegate = self
phoneField.delegate = self
emailField.returnKeyType = UIReturnKeyType.Next
usernameField.returnKeyType = UIReturnKeyType.Next
passwordField.returnKeyType = UIReturnKeyType.Next
phoneField.returnKeyType = UIReturnKeyType.Next
emailField.tag = 1
usernameField.tag = 2
passwordField.tag = 3
phoneField.tag = 4
}
func textFieldShouldReturn(textField: UITextField) -> Bool {
switch (textField) {
case emailField:
usernameField.becomeFirstResponder()
case usernameField:
passwordField.becomeFirstResponder()
case passwordField:
phoneField.becomeFirstResponder()
default:
textField.resignFirstResponder()
}
return true
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/
//MARK: Picker
func pickerView(pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {
return schoolArray[row]
}
func pickerView(pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
return schoolArray.count
}
func numberOfComponentsInPickerView(pickerView: UIPickerView) -> Int {
return 1
}
func pickerView(pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
collegePicked.0 = row
}
//MARK: Actions
@IBAction func signupAction(sender: AnyObject) {
let username = self.usernameField.text!
let password = self.passwordField.text!
let email = self.emailField.text!
let phoneNumber = self.phoneField.text!
if (collegePicked.0 == 0) {
collegePicked.1 = "AGR"
}
else {
collegePicked.1 = "Sigma Nu"
}
if (username.utf16.count < 4 || password.utf16.count < 5)
{
let alert = UIAlertController(title: "Invalid", message: "Username must be greater than 4 and password must be greater than 5", preferredStyle: UIAlertControllerStyle.Alert)
let action = UIAlertAction(title: "OK", style: .Default) { _ in
// Put here any code that you would like to execute when
// the user taps that OK button (may be empty in your case if that's just
// an informative alert)
}
alert.addAction(action)
self.presentViewController(alert, animated: true, completion: nil)
}
else if (email.utf16.count < 8) {
let alert = UIAlertController(title: "Invalid", message: "Enter a valid email", preferredStyle: UIAlertControllerStyle.Alert)
let action = UIAlertAction(title: "OK", style: .Default) { _ in
// Put here any code that you would like to execute when
// the user taps that OK button (may be empty in your case if that's just
// an informative alert)
}
alert.addAction(action)
self.presentViewController(alert, animated: true, completion: nil)
}
else {
self.activityIndicator.startAnimating()
let newUser = PFUser()
newUser["username"] = username
newUser.username = username
newUser.password = password
newUser.email = email
newUser["phoneNumber"] = phoneNumber
newUser["favorites"] = ""
newUser.signUpInBackgroundWithBlock({ (success, error) -> Void in
self.activityIndicator.stopAnimating()
if (error != nil) {
let alert = UIAlertController(title: "Error", message: "Uh-Oh, there was an error. Please try again", preferredStyle: UIAlertControllerStyle.Alert)
let action = UIAlertAction(title: "OK", style: .Default) { _ in
// Put here any code that you would like to execute when
// the user taps that OK button (may be empty in your case if that's just
// an informative alert)
}
alert.addAction(action)
self.presentViewController(alert, animated: true, completion: nil)
} else {
let alert = UIAlertController(title: "Success", message: "Signed Up", preferredStyle: UIAlertControllerStyle.Alert)
let action = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) { Void in
//
// Put here any code that you would like to execute when
// the user taps that OK button (may be empty in your case if that's just
// an informative alert)
self.performSegueWithIdentifier("backToLogin", sender: self)
}
alert.addAction(action)
self.presentViewController(alert, animated: true, completion: nil)
}
})
}
}
}