如何禁用UITextField或键盘的文本自动更正? [英] How to disable text-autocorrection for an UITextField or keyboard?

查看:129
本文介绍了如何禁用UITextField或键盘的文本自动更正?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个案例,自动修正从来没有任何意义。这太令人讨厌了。我可以为UITextField禁用它吗?

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

推荐答案

使用Interface Builder,您可以在Inspector的属性选项卡中禁用更正 。

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

Programmaticaly你可以使用

Programmaticaly you can use

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

这篇关于如何禁用UITextField或键盘的文本自动更正?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆