如何禁用 iPhone 键盘上的 Go 按钮
谁能告诉我如何禁用键盘上的“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在界面构建器中,勾选标有“自动启用返回键”的框。
在代码中执行:
[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.