20
¿Cómo ocultar el teclado rápidamente al presionar la tecla de retorno?
Estoy usando UITextfiedmientras hago clic en el teclado textfied aparece pero cuando presioné la returntecla, el teclado no está desapareciendo. Use el siguiente código: func textFieldShouldReturn(textField: UITextField!) -> Bool // called when 'return' key pressed. return NO to ignore. { return true; } El método resignfirstresponder no está funcionando.
214
ios
swift
uitextfield