禁用UITextField的自动更正 [英] Disable auto correction of UITextField

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

问题描述

当我尝试在我的iPhone应用程序中编辑文本( UITextfield )时,它会自动更正我的输入。



<你能告诉我怎样才能禁用它?

解决方案

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


When I try to edit texts in my iPhone application (UITextfield), it auto-corrects my input.

Could you let me know how can I disable this?

解决方案

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

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

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