I've got a modal view controller that is presented and a UITextView becomes the first responder and the keyboard is shown.
Once this screen is loaded, the user can categorize their input before submitting it. This happens by way of another modal view controller that is presented on top.
When this second one is presented, the keyboard is dismissed, the user chooses, and then reappears when the initial UITextView becomes first responder again.
How can I present the second modal view controller without ever dismissing the keyboard?
EDIT: I've implemented part of the UITextViewDelegate, and I'm still not getting the desired result.
- (BOOL)textViewShouldEndEditing:(UITextView *)textView {
return NO;
}
UITextViewDelegate
? In many cases, people forgot this delegate. – Raptor