如何使用“完成”键盘按钮关闭 UITextView?

发布于 2024-10-15 15:53:05 字数 374 浏览 4 评论 0原文

可能的重复:
如何使用返回键关闭 UITextView 的键盘?

我有一个 UITextView 并完成了以下操作:

text.returnKeyType = UIReturnKeyDone;

这样当我按下“完成”时我可以关闭键盘,但是当我单击“完成”时,它所做的只是进入下一行。我怎样才能改变这种行为?感谢您的帮助

Possible Duplicate:
How to dismiss keyboard for UITextView with return key?

I have a UITextView and have done the following:

text.returnKeyType = UIReturnKeyDone;

so that I can dismiss the keyboard when I press on done, however when i click on Done all it does is to go into the next line. How can I change this behavior? Thanks for the help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒儿 2024-10-22 15:53:05

UITextView 上没有 shouldReturn,但您可以实现 UITextViewDelegate 并监视插入:

- (BOOL) textView: (UITextView*) textView
    shouldChangeTextInRange: (NSRange) range
    replacementText: (NSString*) text
{
    if ([text isEqualToString:@"\n"]) {
        [textView resignFirstResponder];
        return NO;
    }
    return YES;
}

编辑:是的,抱歉,这是一个 欺骗

There’s no shouldReturn on UITextView, but you can implement UITextViewDelegate and watch for insertions:

- (BOOL) textView: (UITextView*) textView
    shouldChangeTextInRange: (NSRange) range
    replacementText: (NSString*) text
{
    if ([text isEqualToString:@"\n"]) {
        [textView resignFirstResponder];
        return NO;
    }
    return YES;
}

Edit: And yes, sorry, this is a dupe.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文