美文网首页
UITextView return

UITextView return

作者: 高先生Devin | 来源:发表于2017-03-08 14:23 被阅读0次

    iOS开发中,发现UITextView没有UITextField中textFieldShouldReturn:这样的方法,那么要实现UITextView return键隐藏键盘,可以通过判断输入的字符是不是回车符来实现。首先,声明要实现UITextView 的delegate。[plain]@interface MyViewController :UIViewController然后, 设置textView的delegate.

    textView.delegate =self;

    通常在viewDidLoad中设置此属性,或在nib(或storyboard)中。

    最后,实现代理方法。

    [plain]

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

    {

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

    [textView resignFirstResponder];

    return NO;

    }

    return YES;

    }

    这样,就实现了iOS中UITextView return键隐藏键盘。

    相关文章

      网友评论

          本文标题:UITextView return

          本文链接:https://www.haomeiwen.com/subject/imubgttx.html