20
Como ocultar rapidamente o teclado ao pressionar a tecla Enter?
Estou usando UITextfiedenquanto clico no teclado textfied aparecer, mas quando pressionei a returntecla, o teclado não está desaparecendo. Eu usei o seguinte código: func textFieldShouldReturn(textField: UITextField!) -> Bool // called when 'return' key pressed. return NO to ignore. { return true; } o método resignfirstresponder não está entrando na função.
214
ios
swift
uitextfield