iOS 键盘输入选择器

发布于 2024-11-02 07:16:41 字数 46 浏览 0 评论 0原文

在 IOS 上,我应该在哪里将选择器连接到键盘输入按钮?

干杯

On IOS where do i hook up a selector to the keyboards enter button?

Cheers

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

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

发布评论

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

评论(3

绝對不後悔。 2024-11-09 07:16:41

使用 UITextFieldDelegate-协议并实现:

-(BOOL)textFieldShouldReturn:(UITextField *)textField

请参阅 UITextFieldDelegate 参考

Use the UITextFieldDelegate-Protocol and implement:

-(BOOL)textFieldShouldReturn:(UITextField *)textField

See the UITextFieldDelegate Reference.

囚我心虐我身 2024-11-09 07:16:41

在 Till 列出的 textFieldShouldReturn 方法中,您可以

[textField resignFirstResponder];

隐藏键盘。

In the textFieldShouldReturn method listed by Till, you would do

[textField resignFirstResponder];

to hide the keyboard.

没有伤那来痛 2024-11-09 07:16:41

将 UITextFieldDelegate 添加到您的 .h 并将以下代码添加到您的 .m:

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

Add UITextFieldDelegate to your .h and add bellow code to your .m:

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