在聊天页面的 viewDidLoad 监听键盘通知
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(rcInputBar_didReceiveKeyboardWillShowNotification:)
name:UIKeyboardWillShowNotification
object:nil];
- (void)rcInputBar_didReceiveKeyboardWillShowNotification:(NSNotification *)notification {
[self.chatSessionInputBarControl.inputTextView becomeFirstResponder];
}