iOS 开发中中 textView 作为子控件点击输入文本,然后退出文本的方式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 开发中中 textView 作为子控件点击输入文本,然后退出文本的方式相关的知识,希望对你有一定的参考价值。

方式1. 使用当双击输入的时候弹出键盘同时,使用手势和通知监听键盘的方法实现

  代码如下:

  1. 监听键盘通知

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(addTap) name:UIKeyboardDidShowNotification object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyDismiss) name:UIKeyboardWillHideNotification object:nil];

   2. 弹出键盘中添加方法

    - (void)addTap {

         _tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(resign)];

        [self.view addGestureRecognizer:_tap];//self.view 可以视情况改动

    }

  3. 手势的事件

  #pragma mark - 点击手势的事件方法

    - (void)resign {

          [self.view endEditing:YES];

    }

  4. 键盘消失的方法

    - (void)keyDismiss {

      [self.view removeGestureRecognizer:_tap];

  }

 

方式2: 使用textView 的代理方法

#pragma mark - textView 的代理方法

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

        if ([text isEqualToString:@"\n"]) {

        [textView resignFirstResponder];

        return NO;

    }

    return YES;

}

 

以上是关于iOS 开发中中 textView 作为子控件点击输入文本,然后退出文本的方式的主要内容,如果未能解决你的问题,请参考以下文章

Android编程:如何在子线程中更新TextView控件

android开发的textview和imageview有啥区别吗?

android textview啥意思

Android自定义控件3:带边框点击背景变色的textview,原型是支付宝手机充值中话费充值按钮

在 TextView 上点击 Gesture,其超级视图在 iOS 11 中不起作用

#私藏项目实操分享#iOS开发:实现点击常用控件弹出地区选择框(万能方法)