单击“完成”时键盘 resignfirstresponder

发布于 2024-11-03 22:33:00 字数 96 浏览 1 评论 0原文

我有一个名为 searchBox 的文本字段,如果用户单击“完成”,我会尝试摆脱键盘。

我需要知道 IBAction 才能执行此操作吗?

I have a textfield called searchBox and am trying to get rid of the keyboard if the user either clicks on Done.

Is there an IBAction that I need to know to do this?

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

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

发布评论

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

评论(2

仲春光 2024-11-10 22:33:00

你必须让你的视图控制器成为一个 UITextFieldDelegate 并写入

viewDidLoad:
[searchBox setDelegate:self];

然后写入:

- (BOOL)textFieldShouldReturn:(UITextField *)textfield
{
    [searchbox resignFirstResponter];
    return YES;
}

You have to make your viewcontroller an UITextFieldDelegate and write in

viewDidLoad:
[searchBox setDelegate:self];

And then write:

- (BOOL)textFieldShouldReturn:(UITextField *)textfield
{
    [searchbox resignFirstResponter];
    return YES;
}
嗫嚅 2024-11-10 22:33:00

在视图控制器中:

- (void)viewDidLoad
{
    // ...
    searchBox.delegate = self;
}

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
    [searchBox resignFirstResponder];

    return YES;
}

请参阅 UITextFieldDelegate 文档 了解详细信息(您可能想要返回在我的示例中用“否”代替“是”)。

In your view controller:

- (void)viewDidLoad
{
    // ...
    searchBox.delegate = self;
}

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
    [searchBox resignFirstResponder];

    return YES;
}

See the UITextFieldDelegate documentation for details (you might want to return NO instead of YES in my example).

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