uitextfield隐藏键盘?

发布于 2024-10-27 11:35:51 字数 115 浏览 1 评论 0原文

在 iPhone 上。当我按下 uitextfield 时,我不希望弹出键盘。

我想要同样的行为,只是根本没有键盘。当用户按下 uitextfield 时如何隐藏/关闭键盘?

On the iphone. When I press on the uitextfield I don't want a keyboard to popup.

I want the same behavior, just no keyboard at all. How can I hide/close the keyboard when the user presses the uitextfield?

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

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

发布评论

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

评论(4

浅忆流年 2024-11-03 11:35:51

如果您想要完全相同的行为,无需键盘,请尝试

textfield.inputView = [[[UIView alloc] initWithFrame:CGRectZero] autorelease];

If you want the exact same behavior, without the keyboard, try

textfield.inputView = [[[UIView alloc] initWithFrame:CGRectZero] autorelease];
善良天后 2024-11-03 11:35:51

UITextFieldDelegate- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField 返回 NO 应该可以做到。

Returning NO to UITextFieldDelegate's - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField should do it.

无所谓啦 2024-11-03 11:35:51

使用

textfield resignFirstResponder

我认为您可以在委托方法中

- (void)textFieldDidBeginEditing:(UITextField *)

textField 如下所示:

-(void)textFieldDidBeginEditing:(UITextField *)textField
{
    if (textField == yourTextField){
      [yourTextfield resignFirstResponder];
    }
}

I think you can use

textfield resignFirstResponder

in delegate method -

(void)textFieldDidBeginEditing:(UITextField *)

textField like this:

-(void)textFieldDidBeginEditing:(UITextField *)textField
{
    if (textField == yourTextField){
      [yourTextfield resignFirstResponder];
    }
}
命比纸薄 2024-11-03 11:35:51

使用此方法可以消除视图中任何位置的键盘触摸

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    [self.view endEditing:YES];
}


通过单击键盘完成按钮

-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
    [textField resignFirstResponder];
    return YES;
}

use this method to dismiss a keyboard touch anywhere in the view

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    [self.view endEditing:YES];
}

or
by clicking on keyboard done button

-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
    [textField resignFirstResponder];
    return YES;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文