当前位置: 代码迷 >> 综合 >> UITextView 获取键盘的发送事件
  详细解决方案

UITextView 获取键盘的发送事件

热度:21   发布时间:2023-12-15 02:06:23.0

效果图:


 

 _inputTextView.returnKeyType = UIReturnKeySend;  (如上图的send ,在真机上会显示发送二字的)

    [_inputTextViewBkView addSubview:_inputTextView];


- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text

{

    if ([text isEqualToString:@"\n"]) //获取键盘中发送事件(回车事件)

    {

        [self sendClick];  //处理键盘的发送事件

    }

    return YES;

}