如何禁用 UITextField 或键盘的文本自动更正?

发布于 2024-09-24 21:34:48 字数 53 浏览 1 评论 0原文

我遇到的情况是自动更正没有任何意义。这太烦人了。我可以为 UITextField 禁用它吗?

I have a case where autocorrection NEVER makes any sense. It's incredibly annoying. Can I disable it for the UITextField?

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

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

发布评论

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

评论(1

叹倦 2024-10-01 21:34:48

使用 Interface Builder,您可以在 Inspector 的“Attributes”选项卡中禁用“Correction”。

Correction

您可以通过编程方式使用

UITextField* textfield = [[UITextField alloc] init];
textfield.autocorrectionType = UITextAutocorrectionTypeNo;

With Interface Builder you can disable "Correction" in the "Attributes" Tab in Inspector.

Correction

Programmaticaly you can use

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