-
Notifications
You must be signed in to change notification settings - Fork 1
/
PVclassViewController.swift
91 lines (56 loc) · 1.79 KB
/
PVclassViewController.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
//
// PVclassViewController.swift
// essentre contre électricité
//
// Created by Maxime Trudel on 16-05-20.
// Copyright © 2016 Analystik. All rights reserved.
//
import UIKit
class PVclassViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// si un textfield est cliqué
// l'api est loadé
//le bon texte field est identifié grâce au tag
// selon le cas -> modify le textfield cliqué
//change le text si nécessaire
// va modifié le texte du picker view selon l'api
//va reloader le picker view
//va afficher le picker view
// retourn faux pour pas ouvrir le keyboard
/* func textFieldShouldBeginEditing(textField: UITextField) -> Bool {
switch textField.tag {
case 1:
PVControl.modifyContaint(textField, containt: dictMarque)
newUi.resultYear.text = "Choisissez une année";
newUi.resultModel.text = "Choisissez un modèle";
break
case 2:
marqueID = PVControl.getKeyByValue(newUi.resultMarque.text!)
dictModel = Api.getModels(marqueID)
PVControl.modifyContaint(textField, containt: dictModel)
newUi.resultYear.text = "Choisissez une année";
break
case 3:
modelID = PVControl.getKeyByValue(newUi.resultModel.text!)
dictYear = Api.getCars(marqueID, modelid: modelID)
PVControl.modifyContaint(textField, containt: dictYear)
break
case 4:
PVControl.modifyContaint(textField, containt: dictPro)
break
default:
PVControl.modifyContaint(textField, containt: [:])
break
}
newUi.dropdown.reloadAllComponents();
newUi.dropdown.hidden = false
return false
}
*/
}