-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateProfileTwo
46 lines (31 loc) · 1.33 KB
/
CreateProfileTwo
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
//
// CreateProfile2ViewController.swift
// RentAdate
//
// Created by Kassandra Capretta on 12/19/19.
// Copyright © 2019 Kassandra Capretta. All rights reserved.
//
import UIKit
class CreateProfile2ViewController: UIViewController {
@IBOutlet weak var lookingForDate: UIButton!
@IBOutlet weak var wantsToBeDate: UIButton!
override func viewDidLoad() {
super.viewDidLoad()
Utilities.styleHollowButton(lookingForDate)
Utilities.styleHollowButton(wantsToBeDate)
}
@IBAction func profileOptionTapped(_ sender: UIButton) {
if let index = selectedOption.firstIndex(of: sender.tag) {
selectedOption.remove(at: index)
Utilities.styleHollowButton(sender)
} else {
selectedOption.append(sender.tag)
Utilities.styleFilledButton(sender)
}
}
var selectedOption = UserInfo(type: "selectedOption", value: SelectedOption.both, visible: true)
if lookingFor.count == 1 {
lookingFor.value = selectedGender[0] == 0 ? .lookingForDate : .wantsToBeDate
}
firebaseServer.saveCreateProfile1ViewController(profileOptionTapped)
}