如何启用“返回按钮”在 UITextField 键盘中?

发布于 2024-09-02 05:20:06 字数 161 浏览 5 评论 0原文

当我开始编辑 UITextField 时,我选中了“编辑开始时清除”选项,因此它开始时没有文本。但是,在您至少键入一个字符之前,“返回”按钮将呈灰色显示。

我见过其他 iphone 应用程序的“返回”按钮没有变灰(如果您在没有文本的情况下按下它,那么它会返回到原来的文本状态)。这是怎么做到的?

When I start editing a UITextField, I have the "Clear When Editing Begins" option checked so it starts off with no text. However, the "Return" button is grayed out until you type at least one character.

I've seen other iphone apps where the "Return" button is not grayed out (and if you press it with no text, then it goes back to what the text used to be). How is this done?

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

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

发布评论

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

评论(2

还在原地等你 2024-09-09 05:20:06

UITextView 和 UITextField 实现了 UITextInputTraits 协议。该协议指定了一个名为 enablesReturnKeyAutomatically 的属性。以下是 UITextInputTraits 参考中的描述:

此属性的默认值为“否”。如果将其设置为 YES,则当文本输入区域不包含文本时,键盘将禁用返回键。一旦用户输入任何文本,返回键就会自动启用。

因此,在加载 TextField 后将该属性设置为 NO 应该可以解决问题。

UITextView and UITextField implement the UITextInputTraits Protocol. The protocol specifies a property called enablesReturnKeyAutomatically. Here's the description from the UITextInputTraits reference:

The default value for this property is NO. If you set it to YES, the keyboard disables the return key when the text entry area contains no text. As soon as the user enters any text, the return key is automatically enabled.

So, setting the property to NO after loading the TextField should do the trick.

感情废物 2024-09-09 05:20:06

Interface Builder人员在属性检查器中取消选中自动启用返回键。 :)

Interface Builder folks uncheck Auto-enable Return Key in Attributes Inspector. :)

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