Here's the setup:
I have a textView (txtReply) where the user puts information
I have a UIView that contains a scroll view and some labels, as well as the textView (ChatView)
When the user selects the textView, then it brings the keyboard up. I use 'keyboardWillAppear' to move the 'ChatView' up so that the text view is still visible. I then have a reply button that submits the message, draws it into the ChatView, and calls [textView resignFirstResponder].
However, when I do this, it calls the keyboardWillHide, my view resizes, then the it brings the keyboard back up again. Is there something special you have to do to get the keyboard to stay hidden?
Thanks