iphone objective-c iphone-softkeyboard

iphone - ¿Cómo descarto un UITextView usando el botón del teclado Listo?



objective-c iphone-softkeyboard (1)

No hay " shouldReturn en UITextView , pero puede implementar UITextViewDelegate y ver las inserciones:

- (BOOL) textView: (UITextView*) textView shouldChangeTextInRange: (NSRange) range replacementText: (NSString*) text { if ([text isEqualToString:@"/n"]) { [textView resignFirstResponder]; return NO; } return YES; }

Edit: Y sí, lo siento, esto es una dupe .

Posible duplicado:
¿Cómo descartar el teclado para UITextView con tecla de retorno?

Tengo un UITextView y he hecho lo siguiente:

text.returnKeyType = UIReturnKeyDone;

para poder descartar el teclado cuando presiono "Hecho", sin embargo, cuando hago clic en "Listo", todo lo que hace es ir a la siguiente línea. ¿Cómo puedo cambiar este comportamiento? Gracias por la ayuda