-
Notifications
You must be signed in to change notification settings - Fork 0
/
tela_login_chatgpt_input.txt
1076 lines (831 loc) · 46.2 KB
/
tela_login_chatgpt_input.txt
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Tiago Henrique Piantavinha
Pode me ajudar a criar uma tela de login usando Swift com ViewCode
Claro, eu posso te ajudar a criar uma tela de login usando Swift com ViewCode. Abaixo está um exemplo simples que você pode usar como ponto de partida:
Crie um novo projeto no Xcode e selecione a opção "Single View App" como modelo.
Abra o arquivo ViewController.swift e adicione o seguinte código:
swift
Copy code
import UIKit
class ViewController: UIViewController {
let emailTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Email"
textField.borderStyle = .roundedRect
textField.translatesAutoresizingMaskIntoConstraints = false
return textField
}()
let passwordTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Senha"
textField.borderStyle = .roundedRect
textField.isSecureTextEntry = true
textField.translatesAutoresizingMaskIntoConstraints = false
return textField
}()
let loginButton: UIButton = {
let button = UIButton()
button.setTitle("Login", for: .normal)
button.backgroundColor = .systemBlue
button.layer.cornerRadius = 5.0
button.translatesAutoresizingMaskIntoConstraints = false
return button
}()
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .white
view.addSubview(emailTextField)
view.addSubview(passwordTextField)
view.addSubview(loginButton)
NSLayoutConstraint.activate([
emailTextField.centerXAnchor.constraint(equalTo: view.centerXAnchor),
emailTextField.centerYAnchor.constraint(equalTo: view.centerYAnchor, constant: -50),
emailTextField.widthAnchor.constraint(equalToConstant: 250),
emailTextField.heightAnchor.constraint(equalToConstant: 40),
passwordTextField.centerXAnchor.constraint(equalTo: view.centerXAnchor),
passwordTextField.topAnchor.constraint(equalTo: emailTextField.bottomAnchor, constant: 20),
passwordTextField.widthAnchor.constraint(equalToConstant: 250),
passwordTextField.heightAnchor.constraint(equalToConstant: 40),
loginButton.centerXAnchor.constraint(equalTo: view.centerXAnchor),
loginButton.topAnchor.constraint(equalTo: passwordTextField.bottomAnchor, constant: 20),
loginButton.widthAnchor.constraint(equalToConstant: 250),
loginButton.heightAnchor.constraint(equalToConstant: 40),
])
}
}
Este código cria três elementos de interface do usuário: dois campos de texto (um para e-mail e outro para senha) e um botão de login. Os elementos são posicionados usando constraints.
Abra o arquivo Main.storyboard e remova o ViewController padrão. Em seguida, clique em "File > New > File" e selecione a opção "Cocoa Touch Class". Nomeie a classe como "ViewCodeViewController" e certifique-se de que a opção "Subclass of" esteja definida como "UIViewController".
Adicione o seguinte código ao arquivo ViewCodeViewController.swift:
swift
Copy code
import UIKit
class ViewCodeViewController: UIViewController {
let emailTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Email"
textField.borderStyle = .roundedRect
textField.translatesAutoresizingMaskIntoConstraints = false
return textField
}()
let passwordTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Senha"
textField.borderStyle = .roundedRect
textField.isSecureTextEntry = true
textField.translatesAutoresizingMaskIntoConstraints = false
return textField
}()
let loginButton: UIButton = {
let button = UIButton()
button.setTitle("Login", for: .normal)
button.backgroundColor = .systemBlue
button.layer.cornerRadius = 5.0
button.translatesAutoresizingMaskIntoConstraints = false
return button
}()
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .white
view.addSubview(emailTextField)
Tiago Henrique Piantavinha
agora poderia validar o campo de Email para permitir apenas 150 caracteres e validar para permitir apenas e-mails validos
Claro, aqui está o código para validar o campo de email para permitir apenas 150 caracteres e validar para permitir apenas e-mails válidos:
swift
Copy code
import UIKit
class ViewCodeViewController: UIViewController {
let emailTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Email"
textField.borderStyle = .roundedRect
textField.translatesAutoresizingMaskIntoConstraints = false
return textField
}()
let passwordTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Senha"
textField.borderStyle = .roundedRect
textField.isSecureTextEntry = true
textField.translatesAutoresizingMaskIntoConstraints = false
return textField
}()
let loginButton: UIButton = {
let button = UIButton()
button.setTitle("Login", for: .normal)
button.backgroundColor = .systemBlue
button.layer.cornerRadius = 5.0
button.translatesAutoresizingMaskIntoConstraints = false
return button
}()
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .white
view.addSubview(emailTextField)
view.addSubview(passwordTextField)
view.addSubview(loginButton)
NSLayoutConstraint.activate([
emailTextField.centerXAnchor.constraint(equalTo: view.centerXAnchor),
emailTextField.centerYAnchor.constraint(equalTo: view.centerYAnchor, constant: -50),
emailTextField.widthAnchor.constraint(equalToConstant: 250),
emailTextField.heightAnchor.constraint(equalToConstant: 40),
passwordTextField.centerXAnchor.constraint(equalTo: view.centerXAnchor),
passwordTextField.topAnchor.constraint(equalTo: emailTextField.bottomAnchor, constant: 20),
passwordTextField.widthAnchor.constraint(equalToConstant: 250),
passwordTextField.heightAnchor.constraint(equalToConstant: 40),
loginButton.centerXAnchor.constraint(equalTo: view.centerXAnchor),
loginButton.topAnchor.constraint(equalTo: passwordTextField.bottomAnchor, constant: 20),
loginButton.widthAnchor.constraint(equalToConstant: 250),
loginButton.heightAnchor.constraint(equalToConstant: 40),
])
// Adicionando validação do campo de email
emailTextField.delegate = self
}
}
extension ViewCodeViewController: UITextFieldDelegate {
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if textField == emailTextField {
let maxLength = 150
let currentString: NSString = textField.text! as NSString
let newString: NSString =
currentString.replacingCharacters(in: range, with: string) as NSString
return newString.length <= maxLength
}
return true
}
func isValidEmail(email: String) -> Bool {
let emailRegex = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,}"
let emailPredicate = NSPredicate(format: "SELF MATCHES %@", emailRegex)
return emailPredicate.evaluate(with: email)
}
func showAlert(message: String) {
let alert = UIAlertController(title: "Erro", message: message, preferredStyle: .alert)
let action = UIAlertAction(title: "OK", style: .default, handler: nil)
alert.addAction(action)
present(alert, animated: true, completion: nil)
}
@IBAction func loginButtonTapped(_ sender: Any) {
guard let email = emailTextField.text, let password = passwordTextField.text else {
return
}
if !isValidEmail(email: email) {
showAlert(message: "E-mail inválido.")
return
}
// Continuar com o processo de login
}
}
Nesse código, o método textField(_:shouldChangeCharactersIn:replacementString:) é implementado para permitir apenas
Tiago Henrique Piantavinha
agora poderia validar o campo senha para permitir apenas números e no máximo 10 caracteres
Claro! Aqui está o código atualizado para validar o campo de senha para permitir apenas números e no máximo 10 caracteres:
swift
Copy code
import UIKit
class ViewCodeViewController: UIViewController {
let emailTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Email"
textField.borderStyle = .roundedRect
textField.translatesAutoresizingMaskIntoConstraints = false
return textField
}()
let passwordTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Senha"
textField.borderStyle = .roundedRect
textField.isSecureTextEntry = true
textField.translatesAutoresizingMaskIntoConstraints = false
return textField
}()
let loginButton: UIButton = {
let button = UIButton()
button.setTitle("Login", for: .normal)
button.backgroundColor = .systemBlue
button.layer.cornerRadius = 5.0
button.translatesAutoresizingMaskIntoConstraints = false
return button
}()
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .white
view.addSubview(emailTextField)
view.addSubview(passwordTextField)
view.addSubview(loginButton)
NSLayoutConstraint.activate([
emailTextField.centerXAnchor.constraint(equalTo: view.centerXAnchor),
emailTextField.centerYAnchor.constraint(equalTo: view.centerYAnchor, constant: -50),
emailTextField.widthAnchor.constraint(equalToConstant: 250),
emailTextField.heightAnchor.constraint(equalToConstant: 40),
passwordTextField.centerXAnchor.constraint(equalTo: view.centerXAnchor),
passwordTextField.topAnchor.constraint(equalTo: emailTextField.bottomAnchor, constant: 20),
passwordTextField.widthAnchor.constraint(equalToConstant: 250),
passwordTextField.heightAnchor.constraint(equalToConstant: 40),
loginButton.centerXAnchor.constraint(equalTo: view.centerXAnchor),
loginButton.topAnchor.constraint(equalTo: passwordTextField.bottomAnchor, constant: 20),
loginButton.widthAnchor.constraint(equalToConstant: 250),
loginButton.heightAnchor.constraint(equalToConstant: 40),
])
// Adicionando validação dos campos
emailTextField.delegate = self
passwordTextField.delegate = self
}
}
extension ViewCodeViewController: UITextFieldDelegate {
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if textField == emailTextField {
let maxLength = 150
let currentString: NSString = textField.text! as NSString
let newString: NSString =
currentString.replacingCharacters(in: range, with: string) as NSString
return newString.length <= maxLength
} else if textField == passwordTextField {
let maxLength = 10
let allowedCharacters = CharacterSet.decimalDigits
let characterSet = CharacterSet(charactersIn: string)
return newString.length <= maxLength && allowedCharacters.isSuperset(of: characterSet)
}
return true
}
func isValidEmail(email: String) -> Bool {
let emailRegex = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,}"
let emailPredicate = NSPredicate(format: "SELF MATCHES %@", emailRegex)
return emailPredicate.evaluate(with: email)
}
func showAlert(message: String) {
let alert = UIAlertController(title: "Erro", message: message, preferredStyle: .alert)
let action = UIAlertAction(title: "OK", style: .default, handler: nil)
alert.addAction(action)
present(alert, animated: true, completion: nil)
}
@IBAction func loginButtonTapped(_ sender: Any) {
guard let email = emailTextField.text, let password = passwordTextField.text else {
return
}
if !isValidEmail(email:
Tiago Henrique Piantavinha
a função login buttontapped ficou incompleta, poderia repetir apenas ela
Desculpe por isso! Aqui está a função loginButtonTapped completa:
swift
Copy code
@IBAction func loginButtonTapped(_ sender: Any) {
guard let email = emailTextField.text, let password = passwordTextField.text else {
return
}
if !isValidEmail(email: email) {
showAlert(message: "Email inválido.")
return
}
if password.isEmpty {
showAlert(message: "Senha inválida.")
return
}
if password.count > 10 {
showAlert(message: "Senha deve conter no máximo 10 caracteres.")
return
}
// fazer a chamada para API de login aqui
}
Nessa função, estamos verificando se o email é válido e se a senha é válida e tem no máximo 10 caracteres. Se algo estiver errado, exibimos uma mensagem de alerta. Caso contrário, podemos fazer a chamada para API de login. Note que essa parte ainda precisa ser implementada.
Tiago Henrique Piantavinha
agora poderia fazer uma lógica para o botão de login ficar habilitado apenas se os campos de e-mail e senha estiverem preenchidos corretamente
Sim, claro! Para habilitar o botão de login apenas se os campos de e-mail e senha estiverem preenchidos corretamente, você pode adicionar um método de atualização do botão de login que verifica o estado dos campos de texto e habilita ou desabilita o botão de login com base nisso. Aqui está o código atualizado com essa funcionalidade:
swift
Copy code
import UIKit
class ViewCodeViewController: UIViewController {
let emailTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Email"
textField.borderStyle = .roundedRect
textField.translatesAutoresizingMaskIntoConstraints = false
return textField
}()
let passwordTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Senha"
textField.borderStyle = .roundedRect
textField.isSecureTextEntry = true
textField.translatesAutoresizingMaskIntoConstraints = false
return textField
}()
let loginButton: UIButton = {
let button = UIButton()
button.setTitle("Login", for: .normal)
button.backgroundColor = .systemBlue
button.layer.cornerRadius = 5.0
button.isEnabled = false // Botão de login inicialmente desabilitado
button.translatesAutoresizingMaskIntoConstraints = false
return button
}()
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .white
view.addSubview(emailTextField)
view.addSubview(passwordTextField)
view.addSubview(loginButton)
NSLayoutConstraint.activate([
emailTextField.centerXAnchor.constraint(equalTo: view.centerXAnchor),
emailTextField.centerYAnchor.constraint(equalTo: view.centerYAnchor, constant: -50),
emailTextField.widthAnchor.constraint(equalToConstant: 250),
emailTextField.heightAnchor.constraint(equalToConstant: 40),
passwordTextField.centerXAnchor.constraint(equalTo: view.centerXAnchor),
passwordTextField.topAnchor.constraint(equalTo: emailTextField.bottomAnchor, constant: 20),
passwordTextField.widthAnchor.constraint(equalToConstant: 250),
passwordTextField.heightAnchor.constraint(equalToConstant: 40),
loginButton.centerXAnchor.constraint(equalTo: view.centerXAnchor),
loginButton.topAnchor.constraint(equalTo: passwordTextField.bottomAnchor, constant: 20),
loginButton.widthAnchor.constraint(equalToConstant: 250),
loginButton.heightAnchor.constraint(equalToConstant: 40),
])
// Adicionando validação dos campos
emailTextField.delegate = self
passwordTextField.delegate = self
// Atualizando o botão de login quando o texto do campo de texto é alterado
emailTextField.addTarget(self, action: #selector(updateLoginButton), for: .editingChanged)
passwordTextField.addTarget(self, action: #selector(updateLoginButton), for: .editingChanged)
// Atualizando o botão de login inicialmente
updateLoginButton()
}
@objc func updateLoginButton() {
let emailValid = isValidEmail(email: emailTextField.text ?? "")
let passwordValid = isValidPassword(password: passwordTextField.text ?? "")
loginButton.isEnabled = emailValid && passwordValid
}
}
extension ViewCodeViewController: UITextFieldDelegate {
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if textField == emailTextField {
let maxLength = 150
let currentString: NSString = textField.text! as NSString
let newString: NSString =
currentString.replacingCharacters(in: range, with: string) as NSString
return newString.length <= maxLength
} else if textField == passwordTextField {
let maxLength = 10
let allowedCharacters = CharacterSet.decimalDigits
let characterSet = CharacterSet(charactersIn: string)
return newString.length <= maxLength
Tiago Henrique Piantavinha
poderia repetir o código a partir da extension pois ficou incompleto o código
2 / 2
Claro, me desculpe por isso. Aqui está o código completo, a partir da extensão UITextFieldDelegate:
swift
Copy code
extension ViewCodeViewController: UITextFieldDelegate {
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if textField == emailTextField {
let maxLength = 150
let currentString: NSString = textField.text! as NSString
let newString: NSString =
currentString.replacingCharacters(in: range, with: string) as NSString
return newString.length <= maxLength && isValidEmail(email: newString as String)
} else if textField == passwordTextField {
let maxLength = 10
let allowedCharacters = CharacterSet.decimalDigits
let characterSet = CharacterSet(charactersIn: string)
return newString.length <= maxLength && allowedCharacters.isSuperset(of: characterSet)
}
return true
}
func isValidEmail(email: String) -> Bool {
let emailRegex = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,}"
let emailPredicate = NSPredicate(format: "SELF MATCHES %@", emailRegex)
return emailPredicate.evaluate(with: email)
}
func isValidPassword(password: String) -> Bool {
let allowedCharacters = CharacterSet.decimalDigits
let characterSet = CharacterSet(charactersIn: password)
return allowedCharacters.isSuperset(of: characterSet) && password.count <= 10
}
}
Nessa extensão, estamos implementando a validação para o campo de e-mail e senha, bem como limitando o tamanho máximo da senha e permitindo apenas números. Também estamos atualizando o botão de login com base no estado atual dos campos de texto. Note que estamos retornando true no final da função textField(_:shouldChangeCharactersIn:replacementString:) para permitir que o texto seja alterado se nenhuma das condições dos if statements anteriores for satisfeita.
Tiago Henrique Piantavinha
Muito bom, seu código ficou ótimo agora vou testar ele e te dou um feedback
Fico feliz em ajudar! Teste à vontade e qualquer dúvida ou problema adicional, é só me avisar. Estou sempre à disposição para ajudá-lo.
Tiago Henrique Piantavinha
Quando compilei a variável newString da função textField deu erro com a mensagem: Cannot find 'newString' in scope pode me ajudar?
Me desculpe pelo erro, a variável newString não foi declarada na função textField(_:shouldChangeCharactersIn:replacementString:), por isso você está recebendo esse erro.
Para corrigir isso, vamos declarar a variável newString em cada um dos blocos if statements. Aqui está o código corrigido:
swift
Copy code
extension ViewCodeViewController: UITextFieldDelegate {
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if textField == emailTextField {
let maxLength = 150
let currentString: NSString = textField.text! as NSString
let newString: NSString = currentString.replacingCharacters(in: range, with: string) as NSString
return newString.length <= maxLength && isValidEmail(email: newString as String)
} else if textField == passwordTextField {
let maxLength = 10
let allowedCharacters = CharacterSet.decimalDigits
let characterSet = CharacterSet(charactersIn: string)
let newString = (textField.text! as NSString).replacingCharacters(in: range, with: string)
return newString.length <= maxLength && allowedCharacters.isSuperset(of: characterSet)
}
return true
}
func isValidEmail(email: String) -> Bool {
let emailRegex = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,}"
let emailPredicate = NSPredicate(format: "SELF MATCHES %@", emailRegex)
return emailPredicate.evaluate(with: email)
}
func isValidPassword(password: String) -> Bool {
let allowedCharacters = CharacterSet.decimalDigits
let characterSet = CharacterSet(charactersIn: password)
return allowedCharacters.isSuperset(of: characterSet) && password.count <= 10
}
}
Agora o código deve compilar sem erros. Desculpe novamente pela confusão, e por favor, me avise se precisar de mais ajuda!
Tiago Henrique Piantavinha
Ocorreu outra falha na compilação agora com a mensagem: Value of type 'String' has no member 'length'
Me desculpe novamente pelo erro! Esse erro ocorreu porque a propriedade length não existe em Swift. Em vez disso, usamos a propriedade count para contar o número de caracteres em uma string.
Aqui está o código corrigido, substituindo length por count:
swift
Copy code
extension ViewCodeViewController: UITextFieldDelegate {
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if textField == emailTextField {
let maxLength = 150
let currentString: NSString = textField.text! as NSString
let newString: NSString = currentString.replacingCharacters(in: range, with: string) as NSString
return newString.length <= maxLength && isValidEmail(email: newString as String)
} else if textField == passwordTextField {
let maxLength = 10
let allowedCharacters = CharacterSet.decimalDigits
let characterSet = CharacterSet(charactersIn: string)
let newString = (textField.text! as NSString).replacingCharacters(in: range, with: string)
return newString.count <= maxLength && allowedCharacters.isSuperset(of: characterSet)
}
return true
}
func isValidEmail(email: String) -> Bool {
let emailRegex = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,}"
let emailPredicate = NSPredicate(format: "SELF MATCHES %@", emailRegex)
return emailPredicate.evaluate(with: email)
}
func isValidPassword(password: String) -> Bool {
let allowedCharacters = CharacterSet.decimalDigits
let characterSet = CharacterSet(charactersIn: password)
return allowedCharacters.isSuperset(of: characterSet) && password.count <= 10
}
}
Espero que isso ajude e não hesite em me avisar se você encontrar mais erros ou tiver outras perguntas!
Tiago Henrique Piantavinha
Muito bom o código compilou e abriu o simulador para teste, porém ao tentar digitar algo no campo não aparece nada
Desculpe pela confusão! O problema pode ser que o teclado não esteja aparecendo quando você toca no campo de texto. Para exibir o teclado, você precisa definir o delegado do campo de texto como a visualização controladora e implementar o método viewDidAppear na classe ViewCodeViewController para definir o campo de texto como o primeiro respondedor.
Aqui está o código atualizado que deve corrigir esse problema:
swift
Copy code
import UIKit
class ViewCodeViewController: UIViewController {
private lazy var emailTextField: UITextField = {
let textField = UITextField()
textField.translatesAutoresizingMaskIntoConstraints = false
textField.placeholder = "Email"
textField.borderStyle = .roundedRect
textField.keyboardType = .emailAddress
textField.delegate = self
return textField
}()
private lazy var passwordTextField: UITextField = {
let textField = UITextField()
textField.translatesAutoresizingMaskIntoConstraints = false
textField.placeholder = "Senha"
textField.borderStyle = .roundedRect
textField.isSecureTextEntry = true
textField.keyboardType = .numberPad
textField.delegate = self
return textField
}()
private lazy var loginButton: UIButton = {
let button = UIButton()
button.translatesAutoresizingMaskIntoConstraints = false
button.setTitle("Login", for: .normal)
button.setTitleColor(.white, for: .normal)
button.backgroundColor = .gray
button.isEnabled = false
button.addTarget(self, action: #selector(loginButtonTapped), for: .touchUpInside)
return button
}()
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = .white
view.addSubview(emailTextField)
view.addSubview(passwordTextField)
view.addSubview(loginButton)
NSLayoutConstraint.activate([
emailTextField.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor, constant: 32),
emailTextField.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor, constant: 16),
emailTextField.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor, constant: -16),
emailTextField.heightAnchor.constraint(equalToConstant: 40),
passwordTextField.topAnchor.constraint(equalTo: emailTextField.bottomAnchor, constant: 16),
passwordTextField.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor, constant: 16),
passwordTextField.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor, constant: -16),
passwordTextField.heightAnchor.constraint(equalToConstant: 40),
loginButton.topAnchor.constraint(equalTo: passwordTextField.bottomAnchor, constant: 32),
loginButton.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor, constant: 16),
loginButton.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor, constant: -16),
loginButton.heightAnchor.constraint(equalToConstant: 40)
])
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
emailTextField.becomeFirstResponder()
}
@objc private func loginButtonTapped() {
let alertController = UIAlertController(title: "Login", message: "Email: \(emailTextField.text ?? "")\nSenha: \(passwordTextField.text ?? "")", preferredStyle: .alert)
let okAction = UIAlertAction(title: "OK", style: .default, handler: nil)
alertController.addAction(okAction)
present(alertController, animated: true, completion: nil)
}
}
extension ViewCodeViewController: UITextFieldDelegate {
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if textField == emailTextField {
let maxLength = 150
let currentString: NSString = textField.text! as NSString
let newString: NSString = currentString.replacingCharacters(in: range
Tiago Henrique Piantavinha
realizei um debug via xcode e me parece que a função textField quando valida o campo emailTextField já devolve false sem eu ter terminado de digitar o e-mail
Esse problema pode estar ocorrendo porque a validação do email está muito restrita. Para validar um email corretamente, você precisa usar uma expressão regular (regex). Aqui está um exemplo de como você pode usar uma regex para validar o email:
swift
Copy code
func isValidEmail(_ email: String) -> Bool {
let emailRegex = "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}"
let emailPredicate = NSPredicate(format:"SELF MATCHES %@", emailRegex)
return emailPredicate.evaluate(with: email)
}
Essa função isValidEmail verifica se o email fornecido corresponde ao padrão especificado pela expressão regular. Para usá-la, substitua a validação do campo de email na função textField(_:shouldChangeCharactersIn:replacementString:) pelo seguinte código:
swift
Copy code
if textField == emailTextField {
let maxLength = 150
let currentString: NSString = textField.text! as NSString
let newString: NSString = currentString.replacingCharacters(in: range, with: string) as NSString
let isValid = newString.length <= maxLength && isValidEmail(newString as String)
loginButton.isEnabled = isValid
return newString.length <= maxLength
}
Isso deve permitir que o usuário digite o email completo antes de validá-lo, e também verificar se o email digitado é válido. Espero que isso ajude!
Tiago Henrique Piantavinha
Agora poderia atualizar o código para permitir habilitar o botão de login apenas se os campos de e-mail e senha estiverem preenchidos
Claro, para habilitar o botão de login apenas se os campos de e-mail e senha estiverem preenchidos, você pode atualizar a função textField(_:shouldChangeCharactersIn:replacementString:) da seguinte maneira:
swift
Copy code
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if textField == emailTextField {
let maxLength = 150
let currentString: NSString = textField.text! as NSString
let newString: NSString = currentString.replacingCharacters(in: range, with: string) as NSString
let isEmailValid = newString.length <= maxLength && isValidEmail(newString as String)
emailTextFieldValid = isEmailValid
} else if textField == passwordTextField {
let maxLength = 10
let currentString: NSString = textField.text! as NSString
let newString: NSString = currentString.replacingCharacters(in: range, with: string) as NSString
let isPasswordValid = newString.rangeOfCharacter(from: CharacterSet.decimalDigits.inverted) == nil && newString.length <= maxLength
passwordTextFieldValid = isPasswordValid
}
loginButton.isEnabled = emailTextFieldValid && passwordTextFieldValid
return true
}
Aqui, adicionamos duas variáveis booleanas emailTextFieldValid e passwordTextFieldValid, que indicam se o conteúdo de cada campo de texto é válido. Em seguida, atualizamos essas variáveis dentro da função textField(_:shouldChangeCharactersIn:replacementString:) com base no conteúdo de cada campo de texto. Finalmente, definimos a propriedade isEnabled do botão de login com base no valor dessas duas variáveis.
Isso deve permitir que o botão de login seja habilitado apenas se os campos de e-mail e senha estiverem preenchidos corretamente.
Tiago Henrique Piantavinha
Apareceram as seguintes mensagens de erro: Cannot find 'emailTextFieldValid' in scope
Desculpe-me pelo erro. Você precisa definir as variáveis emailTextFieldValid e passwordTextFieldValid fora do escopo da classe, mas dentro do escopo da View, como propriedades da classe. Por exemplo:
swift
Copy code
class LoginView: UIView {
private let emailTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Email"
textField.borderStyle = .roundedRect
textField.autocapitalizationType = .none
textField.keyboardType = .emailAddress
return textField
}()
private let passwordTextField: UITextField = {
let textField = UITextField()
textField.placeholder = "Password"
textField.borderStyle = .roundedRect
textField.isSecureTextEntry = true
return textField
}()
private let loginButton: UIButton = {
let button = UIButton(type: .system)
button.setTitle("Login", for: .normal)
button.addTarget(self, action: #selector(loginButtonTapped), for: .touchUpInside)
button.isEnabled = false // Inicialmente, o botão de login deve estar desabilitado
return button
}()
private var emailTextFieldValid = false // Variável para armazenar se o conteúdo do campo de texto do email é válido
private var passwordTextFieldValid = false // Variável para armazenar se o conteúdo do campo de texto da senha é válido
override init(frame: CGRect) {
super.init(frame: frame)
setupView()
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
private func setupView() {
// Configura a hierarquia da view e os constrains dos subviews
}
// Implementação das funções para validação dos campos de texto
@objc private func loginButtonTapped() {
// Implementação da ação de login
}
}
Com essas alterações, o código deve compilar corretamente e permitir que o botão de login seja habilitado apenas se os campos de e-mail e senha estiverem preenchidos corretamente.
Tiago Henrique Piantavinha
Na validação do campo senha está gerando essa warning Comparing non-optional value of type 'NSRange' (aka '_NSRange') to 'nil' always returns false
Aviso ocorre porque a variável range é uma NSRange, que é uma estrutura em C que não pode ser nula. Por padrão, quando você tenta comparar uma estrutura não opcional com nulo, o compilador emite um aviso.
Para resolver esse aviso, você pode mudar a condição range == nil para range.location == NSNotFound. Por exemplo:
swift
Copy code
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
if textField == emailTextField {
// Implementação da validação do campo de texto do email
} else if textField == passwordTextField {
let newString = (textField.text as NSString?)?.replacingCharacters(in: range, with: string)
if let newString = newString {
// Verifica se a nova string contém apenas números e se tem no máximo 10 caracteres
let isNumeric = CharacterSet.decimalDigits.isSuperset(of: CharacterSet(charactersIn: newString))
let maxLength = newString.count <= 10
// Atualiza a validação do campo de senha
passwordTextFieldValid = isNumeric && maxLength
// Habilita ou desabilita o botão de login com base na validação dos campos de texto
loginButton.isEnabled = emailTextFieldValid && passwordTextFieldValid
}
}
return true
}
Com essa alteração, o aviso deve desaparecer e o código deve continuar funcionando corretamente.
Tiago Henrique Piantavinha
Acabei fazendo alguns ajustes, mas agora funcionou
Que ótimo que você conseguiu fazer os ajustes e o código está funcionando! Fico feliz em poder ajudar. Se precisar de mais ajuda no futuro, não hesite em entrar em contato novamente. Estou sempre à disposição para ajudar.
Tiago Henrique Piantavinha
poderia apenas a me ajudar
Claro, como posso ajudar? Por favor, descreva qual é a sua dúvida ou problema para que eu possa ajudá-lo da melhor forma possível.
Tiago Henrique Piantavinha
a trocar a cor do botão para azul quando desabilitado e verde quando habilitado
Para trocar a cor do botão quando ele estiver habilitado ou desabilitado, você pode usar a propriedade backgroundColor do botão. Quando o botão estiver desabilitado, você pode definir a cor de fundo como azul e, quando estiver habilitado, pode definir a cor de fundo como verde.
Aqui está um exemplo de como fazer isso:
swift
Copy code
class LoginViewController: UIViewController {
// Declaração dos campos de texto e botão de login
private let emailTextField = UITextField()
private let passwordTextField = UITextField()
private let loginButton = UIButton(type: .system)
override func viewDidLoad() {
super.viewDidLoad()
// Configuração dos campos de texto e botão de login
// Configuração do botão de login
loginButton.setTitle("Login", for: .normal)
loginButton.setTitleColor(.white, for: .normal)
loginButton.backgroundColor = .blue // Define a cor de fundo como azul
loginButton.isEnabled = false // Inicialmente o botão de login está desabilitado
loginButton.addTarget(self, action: #selector(loginButtonTapped), for: .touchUpInside)
// Adição dos subviews à view principal
view.addSubview(emailTextField)
view.addSubview(passwordTextField)
view.addSubview(loginButton)
// Configuração das constraints usando o ViewCode (não mostrado aqui)
}
// Implementação da validação dos campos de texto e habilitação/desabilitação do botão de login
private var emailTextFieldValid: Bool = false {
didSet {
loginButton.isEnabled = emailTextFieldValid && passwordTextFieldValid
// Define a cor de fundo do botão como azul se estiver desabilitado
if !loginButton.isEnabled {
loginButton.backgroundColor = .blue
}
}
}
private var passwordTextFieldValid: Bool = false {
didSet {
loginButton.isEnabled = emailTextFieldValid && passwordTextFieldValid
// Define a cor de fundo do botão como verde se estiver habilitado
if loginButton.isEnabled {
loginButton.backgroundColor = .green
}
}
}
// Implementação da ação do botão de login
@objc private func loginButtonTapped() {
// Implementação da lógica de login
}
// Implementação da validação do campo de texto do email
private func validateEmailTextField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
guard let currentText = textField.text else { return false }
let newString = (currentText as NSString).replacingCharacters(in: range, with: string)
// Implementação da validação do campo de texto do email
return true
}
// Implementação da validação do campo de texto da senha
private func validatePasswordTextField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
guard let currentText = textField.text else { return false }
let newString = (currentText as NSString).replacingCharacters(in: range, with: string)
// Implementação da validação do campo de texto da senha
return true
}
}
Observe que a cor de fundo do botão é definida na propriedade backgroundColor, e que a cor é alterada de acordo com o estado do botão na implementação das propriedades emailTextFieldValid e `passwordTextFieldValid
Tiago Henrique Piantavinha
poderia criar isso como uma única função
Sim, podemos criar uma única função para atualizar a aparência do botão de login. Segue o código:
swift
Copy code
private func updateLoginButtonAppearance() {
if emailTextFieldValid && passwordTextFieldValid {
loginButton.isEnabled = true
loginButton.backgroundColor = .green
} else {
loginButton.isEnabled = false
loginButton.backgroundColor = .blue
}
}
Essa função deve ser chamada sempre que houver alguma alteração nos campos de e-mail ou senha, ou seja, dentro das funções emailTextFieldDidChange e passwordTextFieldDidChange. E também pode ser chamada dentro da função viewDidLoad para definir o estado inicial do botão de login.
Tiago Henrique Piantavinha
como mudar para o campo de senha ao apertar o botão retorno do teclado
Para fazer o teclado mudar o foco para o campo de senha quando o usuário pressionar o botão "return", é necessário implementar o método textFieldShouldReturn do protocolo UITextFieldDelegate. Segue o código:
swift
Copy code
extension LoginViewController: UITextFieldDelegate {
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
if textField == emailTextField {
passwordTextField.becomeFirstResponder()
} else {
textField.resignFirstResponder()
loginButtonTapped()
}
return true
}
}
Nesse código, verificamos qual foi o campo de texto que chamou o método textFieldShouldReturn. Se for o campo de e-mail, chamamos o método becomeFirstResponder() do campo de senha, o que faz o teclado mudar o foco para esse campo. Se for o campo de senha, chamamos o método resignFirstResponder() do campo de senha para esconder o teclado, e em seguida chamamos a função loginButtonTapped() para simular o clique no botão de login. Por fim, retornamos true para indicar que o evento "return" foi tratado.
Tiago Henrique Piantavinha
o teclado do campo senha não possui botão de retorno
Se o campo de senha não possui o botão "return" no teclado, você pode adicioná-lo definindo a propriedade returnKeyType do campo de senha como .done. Por exemplo:
swift
Copy code
passwordTextField.returnKeyType = .done
Dessa forma, ao exibir o teclado para o campo de senha, o botão "return" será exibido como "Done". Quando o usuário tocar no botão "Done", o teclado será escondido.
Tiago Henrique Piantavinha
não apareceu o Done após