gpt4 book ai didi

ios - UITextFields 中联系信息的快捷方式或自动填充

转载 作者:可可西里 更新时间:2023-11-01 03:42:58 30 4
gpt4 key购买 nike

当我在 iOS 的 Safari 中点击需要输入姓名和地址的表单时,我会在键盘区域获得快捷方式。例如,这是焦点位于名字字段时的键盘。我可以点击“罗伯特”而不用输入名字。

enter image description here

姓氏、电话、电子邮件、邮政编码等字段也会发生类似的情况。

我可以在原生 iOS 应用程序的 UITextField 中获得类似的东西吗?有没有办法标记一个字段,以便键盘提供这些快捷方式建议?

最佳答案

您可以通过设置 UITextFieldautocorrectionType 来打开或关闭它。 autocorrectionType 的默认值为 UITextAutocorrectionTypeDefault 。这意味着您无需执行任何操作,默认情况下会显示。

UITextAutocorrectionTypeYes; // Turn on

UITextAutocorrectionTypeDefault; // Turn on

UITextAutocorrectionTypeNo; // Turn off

但除了设置 autocorrectionType 值外,您还需要确保设备的 Keyboards Setting 中的 Predictive 已打开。如果关闭 Predictive,即使您将 autocorrectionType 更改为 UITextAutocorrectionTypeYes,也不会显示建议。

更新

您可以更改 textContentType 以选择将显示的建议类型。建议来自 Contacts。比如你要电话建议

textField.textContentType = UITextContentTypeTelephoneNumber;

关于ios - UITextFields 中联系信息的快捷方式或自动填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44312464/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com