单击按钮时如何激活键盘

发布于 2024-11-15 21:27:36 字数 157 浏览 3 评论 0原文

单击 UIButton 时如何激活键盘。

我确实有按钮 当我单击按钮时,我需要激活键盘。

默认情况下,当我单击 UITextField 时,它将激活。

如何在 UIButton 时实现。只需单击一个按钮即可显示键盘。

@感谢大家。提前

How to activate Keyboard when UIButton is Clicked.

I do have button When I clicked the button I need to activate the keyboard.

For default when i click for UITextField it will activated..

How to Implement when UIButton. Just a Button clicked need to show Keyboard.

@thanks to all. in advance

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

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

发布评论

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

评论(2

百合的盛世恋 2024-11-22 21:27:36
- (IBAction)buttonTapped:(id)sender
{
     [myTextField becomeFirstRespoder];
}
- (IBAction)buttonTapped:(id)sender
{
     [myTextField becomeFirstRespoder];
}
云归处 2024-11-22 21:27:36

在字段上调用 ​​becomeFirstResponder

[myTextField becomeFirstResponder];

该字段将在显示后接收来自键盘的输入。

call becomeFirstResponder

[myTextField becomeFirstResponder];

on the field which will receive the input from the keyboard after it's shown.

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