如何禁用 iPhone 键盘上的 Go 按钮

发布于 2024-11-12 19:48:24 字数 138 浏览 1 评论 0原文

谁能告诉我如何禁用键盘上的“Go”按钮?

目的是:当文本字段为空时,“Go”按钮必须被禁用(灰色),当输入某些内容时,“Go”按钮将变为活动状态并且颜色为蓝色。 (与 Apple Find iPhone 应用程序相同)。

非常感谢

Can any one please let me know how to disable the 'Go' button on keyboard?

The purpose is: when the text field is empty Go button has to be disable (gray color) and when type some thing the Go button become active and color blue. (Same as Apple Find iPhone app).

Many thanks

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

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

发布评论

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

评论(1

錯遇了你 2024-11-19 19:48:24

在界面构建器中,勾选标有“自动启用返回键”的框。

在代码中执行: [textField setEnablesReturnKeyAutomatically:YES];

仅当文本字段不为空时才会启用 Return 键(Go 键)。

In Interface builder, tick the box which is labelled Auto-enable Return Key.

In code do: [textField setEnablesReturnKeyAutomatically:YES];

The Return key (Go key) will only be enabled when the text field is not empty.

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