My app basically lets you send a piece of text. When the user taps send, I would like to disable the text view which contains the text so the user can't edit it anymore as the text is being sent. It seems though that setting either enableUserInteraction or editable to NO always resigns the first responder (basically the keyboard is dismissed) which is a behavior I don't want. I want to keep the keyboard displayed. Is there anyway around this? Thanks in advance.

link|improve this question

50% accept rate
1  
So you want a keyboard to remain that...can't do anything? That's an odd UI decision, and probably won't fit the Apple UI guidelines. – Adam Wright Jun 20 '11 at 21:38
@Adam I want a similar behavior to any IM or texting app. The keyboard remains on screen, all the time, unless the user specifically dismisses it. Tapping send doesn't dismiss the keyboard either. What I want to do, however, is lock the field as the message is being sent. – Asem H. Jun 22 '11 at 13:52
I'd be fairly sure/hopeful that such a behavior wouldn't get through App Review – Adam Wright Jun 22 '11 at 14:28
feedback

2 Answers

While I don't really understand why you think it's a good idea to keep the keyboard on screen if there's nothing to edit, you can achieve this by having a hidden UITextField and making that first responder.

link|improve this answer
feedback

If the UITextView's delegate method textView:shouldChangeTextInRange:replacementText: returns NO, its contents will not be changed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.